-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.87 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "vite build",
"build:t": "tauri build",
"dev": "vite --port 3333 --open",
"dev:t": "tauri dev",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "vue-tsc --noEmit",
"preview": "vite preview",
"test": "vitest",
"postinstall": "pnpx simple-git-hooks"
},
"dependencies": {
"@formkit/auto-animate": "1.0.0-beta.6",
"@tauri-apps/api": "^1.2.0",
"@vueuse/core": "^9.10.0",
"animate.css": "^4.1.1",
"axios": "^1.2.2",
"colorthief": "^2.3.2",
"element-plus": "^2.2.28",
"peerjs": "^1.4.7",
"vue": "^3.2.45",
"vue-router": "^4.1.6",
"vue-starport": "^0.3.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.33.1",
"@iconify-json/carbon": "^1.1.13",
"@iconify-json/material-symbols": "^1.1.21",
"@iconify-json/ph": "^1.1.3",
"@tauri-apps/cli": "^1.2.3",
"@types/node": "^18.11.18",
"@unocss/eslint-config": "^0.50.6",
"@unocss/reset": "^0.47.6",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/test-utils": "^2.2.7",
"@vue/tsconfig": "^0.1.3",
"eslint": "^8.31.0",
"jsdom": "^20.0.3",
"lint-staged": "^13.2.1",
"pnpm": "^7.22.0",
"sass": "^1.57.1",
"simple-git-hooks": "^2.8.1",
"typescript": "^4.9.4",
"unocss": "^0.47.6",
"unplugin-auto-import": "^0.12.1",
"unplugin-vue-components": "^0.22.12",
"vite": "^4.1.4",
"vite-plugin-diff-compiler": "^1.0.1",
"vite-plugin-pages": "^0.28.0",
"vite-plugin-qrcode": "^0.2.1",
"vitest": "^0.25.8",
"vue-tsc": "^1.0.22"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint . --fix"
},
"eslintConfig": {
"extends": [
"@antfu",
"@unocss"
],
"ignorePatterns": [
"src-tauri",
"pnpm-lock.yaml"
]
}
}