forked from antfu-collective/vitesse-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.37 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": "^10.4.1",
"vue": "^3.3.4",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@antfu/eslint-config": "^1.0.0-beta.12",
"@iconify-json/carbon": "^1.1.21",
"@types/node": "^20.7.1",
"@unocss/eslint-config": "^0.56.4",
"@unocss/eslint-plugin": "^0.56.4",
"@unocss/reset": "^0.56.4",
"@vitejs/plugin-vue": "^4.3.4",
"@vue-macros/volar": "^0.15.0",
"@vue/test-utils": "^2.4.1",
"eslint": "^8.50.0",
"eslint-define-config": "^1.23.0",
"jsdom": "^22.1.0",
"lint-staged": "^14.0.1",
"pnpm": "^8.8.0",
"simple-git-hooks": "^2.9.0",
"taze": "^0.11.3",
"typescript": "^5.2.2",
"unocss": "^0.56.4",
"unplugin-auto-import": "^0.16.6",
"unplugin-vue-components": "^0.25.2",
"unplugin-vue-macros": "^2.6.0",
"vite": "^4.4.9",
"vite-plugin-pages": "^0.31.0",
"vitest": "^0.34.5",
"vue-tsc": "^1.8.15"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}