forked from chansee97/nova-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.55 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "nova-admin",
"type": "module",
"version": "0.9.8",
"private": true,
"description": "a clean and concise back-end management template based on Vue3, Vite5, Typescript, and Naive UI.",
"author": {
"name": "chansee97",
"email": "[email protected]",
"url": "https://github.com/chansee97"
},
"license": "MIT",
"homepage": "https://github.com/chansee97/nova-admin",
"repository": {
"url": "https://github.com/chansee97/nova-admin.git"
},
"bugs": {
"url": "https://github.com/chansee97/nova-admin/issues"
},
"keywords": [
"Vue",
"Vue3",
"admin",
"admin-template",
"vue-admin",
"vue-admin-template",
"Vite5",
"Vite",
"vite-admin",
"TypeScript",
"TS",
"NaiveUI",
"naive-ui",
"naive-admin",
"NaiveUI-Admin",
"naive-ui-admin",
"UnoCSS"
],
"scripts": {
"dev": "vite --mode dev --port 9980",
"dev:test": "vite --mode test",
"dev:prod": "vite --mode prod",
"build": "vite build --mode prod",
"build:dev": "vite build --mode dev",
"build:test": "vite build --mode test",
"preview": "vite preview --port 9981",
"lint": "eslint . && vue-tsc --noEmit",
"lint:fix": "eslint . --fix",
"lint:check": "npx @eslint/config-inspector",
"sizecheck": "npx vite-bundle-visualizer"
},
"dependencies": {
"@vueuse/core": "^11.2.0",
"alova": "^3.2.2",
"colord": "^2.9.3",
"echarts": "^5.5.1",
"md-editor-v3": "^4.21.2",
"pinia": "^2.2.6",
"pinia-plugin-persistedstate": "^4.1.2",
"quill": "^2.0.2",
"radash": "^12.1.0",
"vue": "^3.5.12",
"vue-draggable-plus": "^0.5.6",
"vue-i18n": "^10.0.4",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@antfu/eslint-config": "^3.8.0",
"@iconify-json/icon-park-outline": "^1.2.1",
"@iconify/vue": "^4.1.2",
"@types/node": "^22.9.0",
"@vitejs/plugin-vue": "^5.1.4",
"@vitejs/plugin-vue-jsx": "^4.0.1",
"eslint": "^9.14.0",
"lint-staged": "^15.2.10",
"naive-ui": "^2.40.1",
"sass": "^1.80.6",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.6.3",
"unocss": "^0.64.0",
"unplugin-auto-import": "^0.18.3",
"unplugin-icons": "^0.20.1",
"unplugin-vue-components": "^0.27.4",
"vite": "^5.4.10",
"vite-bundle-visualizer": "^1.2.1",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-vue-devtools": "7.6.3",
"vue-tsc": "^2.1.10"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
},
"volta": {
"node": "20.12.2"
}
}