-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
45 lines (45 loc) · 1.33 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
{
"name": "spms-web",
"type": "module",
"version": "1.0.0",
"private": true,
"author": "Hamm",
"scripts": {
"s": "vite",
"lint": "eslint --fix",
"dev": "vite build --mode dev",
"test": "vite build --mode test",
"production": "vite build --mode production",
"sync": "git checkout dev && git pull && git add -A && git commit -S -m 'sync(Codes): 自动同步了代码到远端仓库' && git push && git push gitee && git checkout main && git pull && git merge dev && git push && git push gitee && git checkout dev",
"u": "sh update.sh",
"v": "vite preview"
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.1",
"@types/crypto-js": "^4.2.2",
"axios": "^1.7.2",
"core-js": "^3.37.1",
"crypto-js": "^4.2.0",
"echarts": "^5.5.0",
"element-plus": "^2.8.0",
"js-base64": "^3.7.7",
"pinia": "^2.1.7",
"qrcode.vue": "3.4.1",
"register-service-worker": "^1.7.2",
"vue": "^3.4.27",
"vue-clipboard3": "^2.0.0",
"vue-draggable-plus": "^0.6.0",
"vue-router": "^4.3.2"
},
"devDependencies": {
"@antfu/eslint-config": "^4.11.0",
"@vitejs/plugin-vue": "^5.0.4",
"eslint": "^9.24.0",
"globals": "^16.0.0",
"sass": "^1.77.4",
"typescript": "^5.8.2",
"typescript-eslint": "^8.28.0",
"vite": "^6.2.0",
"vue-tsc": "^2.0.19"
}
}