-
Notifications
You must be signed in to change notification settings - Fork 999
/
Copy pathpackage.json
97 lines (97 loc) · 3.4 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
{
"name": "form-create",
"private": true,
"scripts": {
"build": "esno tools/cli/run.ts build",
"build:test": "npm-run-all clear-dist \"build -- --{1}\" --",
"dev:ele": "cd packages/element-ui && npm run dev:ele",
"dev:antdv": "cd packages/ant-design-vue && npm run dev:antdv",
"dev:td": "cd packages/tdesign && npm run dev:td",
"dev:arco": "cd packages/arco-design && npm run dev:arco",
"dev:naive": "cd packages/naive-ui && npm run dev:naive",
"dev:vant": "cd packages/vant && npm run dev:vant",
"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 && npm i && npm-run-all bootstrap:lerna",
"bootstrap:lerna": "lerna bootstrap -- --ignore-engines",
"clear-com-dist": "rimraf components/*/*/dist",
"clear-pkg-dist": "rimraf packages/*/dist",
"clear-dist": "npm-run-all clear-com-dist clear-pkg-dist",
"clear": "npm-run-all clear-dist clear-all"
},
"devDependencies": {
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-replace": "^3.0.0",
"@sixian/css-url": "^1.0.3",
"@types/chalk": "^2.2.0",
"@types/shelljs": "^0.8.9",
"@vue/babel-plugin-jsx": "^1.0.7",
"@vue/cli-plugin-babel": "^4.5.13",
"@vue/cli-service": "^4.5.3",
"@vue/compiler-sfc": "^3.0.11",
"babel-eslint": "^10.1.0",
"chalk": "^4.1.2",
"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",
"esno": "^0.9.1",
"execa": "^5.1.1",
"fast-glob": "^3.2.7",
"figlet": "^1.5.0",
"fs-extra": "^10.0.0",
"html-webpack-plugin": "^4.3.0",
"humps": "^2.0.1",
"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",
"rollup": "^2.56.3",
"rollup-plugin-multi-input": "~1.3.1",
"rollup-plugin-node-externals": "^2.2.0",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-visualizer": "^5.5.2",
"rollup-plugin-vue": "^6.0.0",
"shelljs": "^0.8.4",
"stringify-author": "^0.1.3",
"tslib": "^2.3.1",
"typescript": "^4.4.3",
"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": {
"commander": "^6.0.0",
"dayjs": "^1.10.7",
"postcss": "^8.3.6",
"vue": "^3.5.8",
"wangeditor": "^4.7.8"
}
}