-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1 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
{
"name": "vue3-admin",
"version": "1.0.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview --port 4173",
"test:unit": "vitest --environment jsdom",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky install"
},
"dependencies": {
"@element-plus/icons-vue": "^2.0.6",
"axios": "^0.27.2",
"element-plus": "^2.2.12",
"normalize.css": "^8.0.1",
"pinia": "^2.0.16",
"vue": "^3.2.37",
"vue-router": "^4.1.2"
},
"devDependencies": {
"@antfu/eslint-config": "^0.25.2",
"@vitejs/plugin-vue": "^3.0.1",
"@vue/test-utils": "^2.0.2",
"cz-customizable": "^6.9.1",
"eslint": "^8.21.0",
"husky": "^8.0.1",
"jsdom": "^20.0.0",
"sass": "^1.54.3",
"typescript": "^4.7.4",
"unplugin-auto-import": "^0.11.0",
"unplugin-vue-components": "^0.22.0",
"vite": "^3.0.1",
"vitest": "^0.18.1"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
}
}