-
Notifications
You must be signed in to change notification settings - Fork 495
/
Copy pathpackage.json
60 lines (60 loc) · 1.57 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
{
"name": "vue-naive-admin",
"type": "module",
"version": "2.0.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint:fix": "eslint --fix",
"postinstall": "npx simple-git-hooks",
"up": "taze major -I"
},
"dependencies": {
"@arco-design/color": "^0.4.0",
"@vueuse/core": "^12.3.0",
"axios": "^1.7.9",
"dayjs": "^1.11.13",
"echarts": "^5.6.0",
"lodash-es": "^4.17.21",
"naive-ui": "^2.41.0",
"pinia": "^2.3.0",
"pinia-plugin-persistedstate": "^4.2.0",
"vue": "^3.5.13",
"vue-echarts": "^7.0.3",
"vue-router": "^4.5.0",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@antfu/eslint-config": "^3.13.0",
"@iconify/json": "^2.2.293",
"@unocss/eslint-config": "^0.65.4",
"@unocss/eslint-plugin": "^0.65.4",
"@unocss/preset-rem-to-px": "^0.65.4",
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue-jsx": "^4.1.1",
"eslint": "^9.17.0",
"eslint-plugin-format": "^1.0.1",
"esno": "^4.8.0",
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"lint-staged": "^15.3.0",
"rollup-plugin-visualizer": "^5.14.0",
"simple-git-hooks": "^2.11.1",
"taze": "^18.1.0",
"unocss": "^0.65.4",
"unplugin-auto-import": "^19.0.0",
"unplugin-vue-components": "^28.0.0",
"vite": "^6.0.7",
"vite-plugin-router-warn": "^1.0.0",
"vite-plugin-vue-devtools": "^7.7.0",
"vue3-intro-step": "^1.0.5"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}