forked from xaboy/form-create
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.18 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
{
"name": "form-create",
"private": true,
"scripts": {
"build": "lerna run build",
"dev:ele": "cross-env UI_LiB=element-ui webpack-dev-server --config=./scripts/webpack.config.ele.js",
"dev:iview": "cross-env UI_LiB=iview webpack-dev-server --config=./scripts/webpack.config.iview.js",
"dev:iview4": "cross-env UI_LiB=iview4 webpack-dev-server --config=./scripts/webpack.config.iview4.js",
"dev:antd": "cross-env UI_LiB=ant-design-vue webpack-dev-server --config=./scripts/webpack.config.antd.js",
"dev": "xxx",
"commit": "git cz",
"lint": "eslint *.js",
"clear-all": "rimraf package-lock.json packages/*/node_modules packages/*/package-lock.json",
"bootstrap": "npm run clear-all && npm i && npm-run-all bootstrap:lerna",
"bootstrap:lerna": "lerna bootstrap -- --ignore-engines"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"bili": "^4.8.1",
"chalk": "^2.4.2",
"commitizen": "^3.1.2",
"cross-env": "^5.2.1",
"css-loader": "^2.1.1",
"cz-conventional-changelog": "^2.1.0",
"cz-customizable": "^6.2.0",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.2.3",
"html-webpack-plugin": "^3.2.0",
"husky": "^2.7.0",
"lerna": "^3.18.5",
"lint-staged": "^8.2.1",
"npm-run-all": "^4.1.5",
"rimraf": "^2.7.1",
"vue": "^2.6.10",
"vue-loader": "^15.7.2",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.41.2",
"webpack-chain": "^6.0.0",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.2"
},
"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": "^3.12.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-vue": "^5.1.2"
}
}