-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.02 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
{
"name": "starter-vite-vue3",
"type": "module",
"version": "1.9.0",
"private": true,
"packageManager": "[email protected]",
"description": "Vite + Vue 3 SPA Starter Template, supports I18n, UnoCSS, Axios, File Routing and API auto-import.",
"author": "Kieran Wang <[email protected]> (https://github.com/kieranwv/)",
"license": "MIT",
"engines": {
"pnpm": ">=9.0"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "simple-git-hooks",
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "vue-tsc --noEmit",
"clean": "rimraf dist",
"release": "bumpp"
},
"dependencies": {
"@iconify-json/carbon": "^1.2.3",
"@unocss/reset": "^0.58.9",
"@vueuse/core": "^10.11.1",
"axios": "^1.7.7",
"lodash-es": "^4.17.21",
"nprogress": "^0.2.0",
"pinia": "^2.2.4",
"vue": "^3.5.12",
"vue-i18n": "^9.14.1",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@antfu/eslint-config": "^3.8.0",
"@intlify/unplugin-vue-i18n": "^1.6.0",
"@types/jsdom": "^21.1.7",
"@types/lodash-es": "^4.17.12",
"@types/node": "^18.19.58",
"@types/nprogress": "^0.2.3",
"@vitejs/plugin-vue": "^5.1.4",
"@vitejs/plugin-vue-jsx": "^4.0.1",
"@vue/test-utils": "^2.4.6",
"bumpp": "^9.7.1",
"eslint": "^9.13.0",
"jsdom": "^22.1.0",
"lint-staged": "^15.2.10",
"npm-run-all2": "^6.2.6",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.6.3",
"unocss": "^0.61.9",
"unplugin-auto-import": "^0.18.3",
"unplugin-vue-components": "^0.27.4",
"unplugin-vue-router": "^0.10.8",
"vite": "^5.4.9",
"vite-plugin-compression2": "^1.3.0",
"vite-plugin-vue-devtools": "^7.5.2",
"vite-plugin-vue-layouts": "^0.11.0",
"vitest": "^2.1.3",
"vue-tsc": "^2.1.6"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "pnpm lint:fix"
}
}