-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.06 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
{
"name": "starter-vite-vue3",
"type": "module",
"version": "1.13.1",
"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.5",
"@iconify-json/logos": "^1.2.4",
"@unhead/vue": "^1.11.14",
"@unocss/reset": "^0.65.3",
"@vueuse/core": "^12.2.0",
"axios": "^1.7.9",
"lodash-es": "^4.17.21",
"nprogress": "^0.2.0",
"pinia": "^2.3.0",
"vue": "^3.5.13",
"vue-i18n": "^10.0.5",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.1",
"@intlify/unplugin-vue-i18n": "^6.0.3",
"@types/jsdom": "^21.1.7",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.10.2",
"@types/nprogress": "^0.2.3",
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue-jsx": "^4.1.1",
"@vue/test-utils": "^2.4.6",
"bumpp": "^9.9.2",
"eslint": "^9.17.0",
"jsdom": "^25.0.1",
"lint-staged": "^15.3.0",
"npm-run-all2": "^7.0.2",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.7.2",
"unocss": "^0.65.3",
"unplugin-auto-import": "^0.19.0",
"unplugin-vue-components": "^0.28.0",
"unplugin-vue-router": "^0.10.9",
"vite": "^6.0.6",
"vite-plugin-compression2": "^1.3.3",
"vite-plugin-vue-devtools": "^7.6.8",
"vite-plugin-vue-layouts": "^0.11.0",
"vitest": "^2.1.8",
"vue-tsc": "^2.2.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "pnpm lint:fix"
}
}