-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.28 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
{
"name": "starter-vite",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preview": "vite preview",
"test:unit": "vitest"
},
"dependencies": {
"@vueuse/core": "^10.5.0",
"nprogress": "^0.2.0",
"pinia": "^2.1.7",
"vue": "^3.3.6",
"vue-i18n": "9.5.0",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@antfu/eslint-config": "^0.43.1",
"@iconify-json/carbon": "^1.1.21",
"@intlify/unplugin-vue-i18n": "^1.4.0",
"@types/node": "^20.8.7",
"@types/nprogress": "^0.2.2",
"@unocss/eslint-config": "^0.56.5",
"@unocss/preset-icons": "^0.56.5",
"@vitejs/plugin-vue": "^4.4.0",
"eslint": "^8.52.0",
"lint-staged": "^15.0.2",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.2.2",
"unocss": "^0.56.5",
"unplugin-auto-import": "^0.16.6",
"unplugin-vue-components": "^0.25.2",
"vite": "^4.5.0",
"vite-plugin-pages": "^0.31.0",
"vite-plugin-pwa": "^0.16.5",
"vite-plugin-vue-meta-layouts": "^0.3.1",
"vitest": "^0.34.6",
"vue-tsc": "^1.8.19"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}