forked from xaboy/form-create
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.08 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
{
"name": "form-create",
"private": true,
"scripts": {
"build": "node tools/cli/run.js build",
"dev:ele": "cd packages/element-ui && npm run dev:ele",
"dev:iview": "cd packages/iview && npm run dev:iview",
"dev:iview4": "cd packages/iview4 && npm run dev:iview4",
"dev:view-design": "cd packages/view-design && npm run dev:view-design",
"dev:antdv": "cd packages/ant-design-vue && npm run dev:antdv",
"commit": "git cz",
"lint": "eslint *.js",
"clear-all": "rimraf package-lock.json node_modules packages/*/node_modules components/*/*/node_modules packages/*/package-lock.json components/*/*/package-lock.json",
"bootstrap": "npm run clear-all && npm i && npm-run-all bootstrap:lerna",
"bootstrap:lerna": "lerna bootstrap -- --ignore-engines"
},
"devDependencies": {
"@vue/cli-service": "^4.5.3",
"babel-eslint": "^10.1.0",
"bili": "~4.5.3",
"chalk": "^4.1.0",
"commitizen": "^4.1.2",
"cross-env": "^7.0.2",
"css-loader": "^4.2.1",
"cz-conventional-changelog": "^3.2.0",
"cz-customizable": "^6.3.0",
"eslint": "^7.7.0",
"eslint-plugin-vue": "^6.2.2",
"figlet": "^1.5.0",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.2.5",
"lerna": "^3.22.1",
"lint-staged": "^10.2.11",
"npm-run-all": "^4.1.5",
"ora": "^5.0.0",
"rimraf": "^3.0.2",
"shelljs": "^0.8.4",
"vue": "^2.6.11",
"vue-loader": "^15.9.3",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.11"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,vue}": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"@vue/cli-plugin-babel": "^4.5.3",
"commander": "^6.0.0",
"rollup-plugin-commonjs": "^10.1.0"
}
}