-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.48 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
{
"name": "vepa-admin",
"private": true,
"version": "0.0.1",
"type": "module",
"description": "open source management system",
"author": {
"name": "Jason Chen",
"url": "https://github.com/jcyicai"
},
"license": "MIT",
"homepage": "https://github.com/jcyicai/vue-element-plus-admin",
"repository": {
"type": "git",
"url": "[email protected]:jcyicai/vue-element-plus-admin.git"
},
"bugs": {
"url": "https://github.com/jcyicai/vue-element-plus-admin/issues"
},
"scripts": {
"dev": "vite",
"serve": "vite",
"build:dev": "vue-tsc && vite build --mode development",
"build:prod": "vue-tsc && vite build --mode production",
"type:check": "vue-tsc --noEmit --skipLibCheck",
"preview": "npm run build:dev && vite preview",
"prepare": "husky install",
"lint:eslint": "eslint --fix --ext .js,.ts,.vue ./src",
"lint:prettier": "prettier --write \"src/**/*.{js,ts,json,tsx,css,less,scss,vue,html,md}\"",
"lint:lint-staged": "lint-staged"
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.1",
"@vueuse/core": "^10.7.2",
"axios": "^1.6.5",
"dayjs": "^1.11.10",
"echarts": "^5.5.0",
"echarts-liquidfill": "^3.1.0",
"element-plus": "^2.5.1",
"md5": "^2.3.0",
"mitt": "^3.0.1",
"normalize.css": "^8.0.1",
"nprogress": "^0.2.0",
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.1",
"qs": "^6.11.2",
"screenfull": "^6.0.2",
"sortablejs": "^1.15.2",
"vue": "^3.4.14",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@rushstack/eslint-patch": "^1.7.0",
"@tsconfig/node18": "^18.2.2",
"@types/md5": "^2.3.5",
"@types/node": "^20.11.4",
"@types/nprogress": "^0.2.3",
"@types/qs": "^6.9.11",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@vitejs/plugin-vue": "^4.5.2",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vue/tsconfig": "^0.5.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.20.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.2.2",
"sass": "^1.69.7",
"typescript": "^5.3.3",
"vite": "^5.0.11",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-html": "^3.2.2",
"vite-plugin-svg-icons": "^2.0.1",
"vue-tsc": "^1.8.27"
},
"engines": {
"node": ">=16.0.0"
}
}