-
-
Notifications
You must be signed in to change notification settings - Fork 216
/
package.json
53 lines (53 loc) · 1.36 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
{
"type": "module",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "vite build",
"dev": "vite --port 3333 --open",
"lint": "eslint .",
"typecheck": "vue-tsc --noEmit",
"preview": "vite preview",
"test": "vitest",
"up": "taze major -I",
"postinstall": "npx simple-git-hooks"
},
"dependencies": {
"@vueuse/core": "^11.0.3",
"vue": "^3.5.3",
"vue-router": "^4.4.3"
},
"devDependencies": {
"@antfu/eslint-config": "^3.4.0",
"@iconify-json/carbon": "^1.2.1",
"@types/node": "^22.5.4",
"@unocss/eslint-config": "^0.62.3",
"@unocss/eslint-plugin": "^0.62.3",
"@unocss/reset": "^0.62.3",
"@vitejs/plugin-vue": "^5.1.3",
"@vue-macros/volar": "^0.28.1",
"@vue/test-utils": "^2.4.6",
"eslint": "^9.10.0",
"eslint-plugin-format": "^0.1.2",
"jsdom": "^25.0.0",
"lint-staged": "^15.2.10",
"pnpm": "^9.9.0",
"simple-git-hooks": "^2.11.1",
"taze": "^0.16.7",
"typescript": "^5.5.4",
"unocss": "^0.62.3",
"unplugin-auto-import": "^0.18.2",
"unplugin-vue-components": "^0.27.4",
"unplugin-vue-macros": "^2.11.8",
"unplugin-vue-router": "^0.10.7",
"vite": "^5.4.3",
"vitest": "^2.0.5",
"vue-tsc": "^2.1.6"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}