-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.92 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": "naive-admin-pro",
"type": "module",
"version": "1.0.0",
"private": true,
"author": {
"name": "linsxw.",
"email": "[email protected]",
"url": "https://github.com/linsxw"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"scripts": {
"dev": "vite --mode development",
"build:dev": "vue-tsc && vite build --mode development",
"build:production": "vue-tsc && vite build --mode production",
"build:no-tsc": "vite build",
"preview": "vite preview --port 4100",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint-staged": "lint-staged",
"prepare": "husky"
},
"dependencies": {
"@unocss/reset": "^0.62.1",
"@vueuse/core": "^10.11.1",
"alova": "^2.20.5",
"dayjs": "^1.11.12",
"naive-ui": "^2.39.0",
"pinia": "^2.2.1",
"pinia-plugin-persistedstate": "^3.2.1",
"rollup-plugin-visualizer": "^5.12.0",
"vue": "^3.4.37",
"vue-json-pretty": "^2.4.0",
"vue-router": "^4.4.3"
},
"devDependencies": {
"@antfu/eslint-config": "^2.25.1",
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/node": "^22.3.0",
"@unocss/eslint-config": "^0.62.1",
"@vicons/antd": "^0.12.0",
"@vicons/ionicons5": "^0.12.0",
"@vitejs/plugin-vue": "^5.1.2",
"cz-customizable": "^7.2.1",
"eslint": "^9.9.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.9",
"rollup": "^4.20.0",
"sass": "^1.77.8",
"typescript": "^5.5.4",
"unocss": "^0.62.1",
"unplugin-auto-import": "^0.18.2",
"unplugin-vue-components": "^0.27.4",
"unplugin-vue-macros": "^2.11.5",
"vite": "^5.4.0",
"vite-plugin-progress": "^0.0.7",
"vite-plugin-vue-devtools": "^7.3.8",
"vite-svg-loader": "^5.1.0",
"vue-tsc": "^2.0.29"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"lint-staged": {
"*": "eslint --fix"
}
}