-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
109 lines (109 loc) · 3.61 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
100
101
102
103
104
105
106
107
108
109
{
"name": "vue-next-admin",
"version": "2.0.2",
"description": "vue3 vite next admin template",
"author": "lyt_20201208",
"license": "MIT",
"scripts": {
"dev": "vite --force",
"build": "vite build",
"build:golocal": "vite build --mode golocal",
"build:open": "vite build --mode open",
"build:test": "vite build --mode test",
"deploy:zip": "npm run build && npm run zipAndUpload && npm run unzip && npm run success",
"zipAndUpload": "cd dist && rm -rf zhgy.sagoo.cn.zip && zip -r -q zhgy.sagoo.cn.zip ./ && ssh iot 'sudo rm /www/wwwroot/zhgy.sagoo.cn-old.zip' | ssh iot 'sudo mv /www/wwwroot/zhgy.sagoo.cn.zip /www/wwwroot/zhgy.sagoo.cn-old.zip' | scp -r -O zhgy.sagoo.cn.zip iot:/www/wwwroot",
"unzip": "ssh iot 'cd /www/wwwroot/ && sudo unzip -q -o -d ./zhgy.sagoo.cn zhgy.sagoo.cn.zip'",
"success": "echo '\\033[31m 部署完成 \\033[0m'",
"deploy": "npm run build && npm run deploy:rm && npm run deploy:scp && npm run deploy:auth | npm run success",
"deploy:rm": "ssh iot 'rm -rf /www/wwwroot/zhgy.sagoo.cn-copy/* && rm -rf /www/wwwroot/zhgy.sagoo.cn-pre/*'",
"deploy:scp": "scp -r -O ./dist/* iot:/www/wwwroot/zhgy.sagoo.cn-pre/ && ssh iot 'cd /www/wwwroot/zhgy.sagoo.cn/ && mv `ls | grep -v plugin` ../zhgy.sagoo.cn-copy && mv ../zhgy.sagoo.cn-pre/* ./'",
"deploy:auth": "ssh iot 'chown -R www /www/wwwroot/zhgy.sagoo.cn/'",
"lint-fix": "eslint --fix --ext .js --ext .jsx --ext .vue src/"
},
"dependencies": {
"@antv/g2plot": "^2.4.20",
"@element-plus/icons-vue": "^2.0.9",
"axios": "^0.26.0",
"clipboard": "^2.0.11",
"codemirror": "^5.65.9",
"countup.js": "^2.1.0",
"cropperjs": "^1.5.12",
"dayjs": "^1.11.8",
"downloadjs": "^1.4.7",
"echarts": "^5.3.3",
"echarts-gl": "^2.0.9",
"echarts-wordcloud": "^2.0.0",
"element-plus": "2.2.28",
"event-source-polyfill": "^1.0.31",
"jsplumb": "^2.15.6",
"jsrsasign": "^10.8.6",
"loadsh": "^0.0.4",
"mitt": "^3.0.0",
"nprogress": "^0.2.0",
"pako": "^1.0.11",
"print-js": "^1.6.0",
"qrcodejs2-fixes": "^0.0.2",
"screenfull": "^6.0.1",
"sortablejs": "^1.14.0",
"splitpanes": "^3.1.1",
"uuid": "^9.0.0",
"vform3-builds": "^3.0.8",
"vue": "^3.2.37",
"vue-baidu-map-3x": "^1.0.18",
"vue-clipboard3": "^1.0.1",
"vue-codemirror": "^6.1.1",
"vue-grid-layout": "^3.0.0-beta1",
"vue-i18n": "9.1.10",
"vue-router": "^4.0.13",
"vue3-clipboard": "^1.0.0",
"vue3-cron": "^1.1.8",
"vue3-json-viewer": "^2.2.2",
"vuex": "^4.0.2",
"wangeditor": "^4.7.12",
"xlsx-with-styles": "^0.17.2"
},
"devDependencies": {
"@types/node": "^17.0.21",
"@types/nprogress": "^0.2.0",
"@types/sortablejs": "^1.10.7",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"@vitejs/plugin-vue": "^2.2.4",
"@vue/compiler-sfc": "^3.2.31",
"dotenv": "^16.0.0",
"eslint": "^8.10.0",
"eslint-plugin-vue": "^8.5.0",
"prettier": "^2.5.1",
"sass": "^1.49.9",
"sass-loader": "^12.6.0",
"typescript": "^4.6.2",
"vite": "^2.9.16",
"vite-plugin-compression": "^0.5.1",
"vue-eslint-parser": "^8.3.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"bugs": {
"url": "https://gitee.com/lyt-top/vue-next-admin/issues"
},
"engines": {
"node": ">=12.0.0",
"npm": ">= 6.0.0"
},
"keywords": [
"vue",
"vue3",
"vuejs/vue-next",
"element-ui",
"element-plus",
"vue-next-admin",
"next-admin"
],
"repository": {
"type": "git",
"url": "https://gitee.com/lyt-top/vue-next-admin.git"
}
}