-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
35 lines (35 loc) · 1.5 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
{
"name": "vxe-ui-docs",
"version": "0.1.0",
"private": true,
"scripts": {
"update": "npm install --legacy-peer-deps",
"update:other3": "cd other3 && npm install --legacy-peer-deps",
"update:other4": "cd other4 && npm install --legacy-peer-deps",
"update:v3": "cd v3 && npm install --legacy-peer-deps",
"update:v4": "cd v4 && npm install --legacy-peer-deps",
"update:all": "npm run update && npm run update:other3 && npm run update:v3 && npm run update:other4 && npm run update:v4",
"build:other3": "cd other3 && npm run build",
"build:other4": "cd other4 && npm run build",
"build:v3": "cd v3 && npm run build",
"build:v4": "cd v4 && npm run build",
"build:all": "npm run build:other3 && npm run build:v3 && npm run build:other4 && npm run build:v4",
"build": "npm run build:all",
"pack:other3": "npm run build:other3 && gulp build_other3_docs && gulp build_other3_zip",
"pack:other4": "npm run build:other4 && gulp build_other4_docs && gulp build_other4_zip",
"pack:v3": "npm run build:v3 && gulp build_v3_docs && gulp build_v3_zip",
"pack:v4": "npm run build:v4 && gulp build_v4_docs && gulp build_v4_zip",
"pack:all": "npm run build:all && gulp build_all_docs && gulp build_all_zip"
},
"devDependencies": {
"del": "~6.0.0",
"gulp": "~4.0.2",
"gulp-clean": "~0.4.0",
"gulp-concat": "~2.6.1",
"gulp-rename": "~2.0.0",
"gulp-replace": "~1.1.4",
"gulp-zip": "~5.1.0",
"uglify-js": "~3.17.4",
"xe-utils": "^3.5.31"
}
}