-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.18 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.18 KB
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
75
76
77
{
"name": "starter-vite-vue3",
"type": "module",
"version": "1.17.0",
"packageManager": "pnpm@9.10.0",
"description": "Vite + Vue 3 SPA Starter Template, supports I18n, UnoCSS, Axios, File Routing and API auto-import.",
"author": "Kieran Wang <kieranwme@gmail.com> (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.8",
"@iconify-json/logos": "^1.2.4",
"@unhead/vue": "^2.0.8",
"@unocss/reset": "66.1.0-beta.12",
"@vueuse/core": "^13.1.0",
"axios": "^1.9.0",
"lodash-es": "^4.17.21",
"nprogress": "^0.2.0",
"pinia": "^3.0.2",
"pinia-plugin-persistedstate": "^4.2.0",
"vue": "^3.5.13",
"vue-i18n": "^11.1.3",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@antfu/eslint-config": "^4.12.0",
"@intlify/unplugin-vue-i18n": "^6.0.8",
"@types/jsdom": "^21.1.7",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.15.2",
"@types/nprogress": "^0.2.3",
"@vitejs/plugin-legacy": "^6.1.1",
"@vitejs/plugin-vue": "^5.2.3",
"@vitejs/plugin-vue-jsx": "^4.1.2",
"@vue/test-utils": "^2.4.6",
"bumpp": "^10.1.0",
"eslint": "^9.25.1",
"jsdom": "^26.1.0",
"lint-staged": "^15.5.1",
"npm-run-all2": "^7.0.2",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.13.0",
"terser": "^5.39.0",
"typescript": "^5.8.3",
"unocss": "66.1.0-beta.12",
"unplugin-auto-import": "^19.1.2",
"unplugin-vue-components": "^28.5.0",
"unplugin-vue-router": "^0.12.0",
"vite": "^6.3.3",
"vite-plugin-compression2": "^1.3.3",
"vite-plugin-vue-devtools": "^7.7.5",
"vite-plugin-vue-layouts": "^0.11.0",
"vitest": "^3.1.2",
"vue-tsc": "^2.2.10"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "pnpm lint:fix"
}
}