forked from formilyjs/element-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.29 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": "root",
"private": true,
"devEngines": {
"node": "8.x || 9.x || 10.x || 11.x"
},
"workspaces": [
"packages/*"
],
"scripts": {
"start": "vuepress dev docs",
"build": "formily-tpl build",
"build:docs": "vuepress build docs",
"test": "jest --coverage",
"test:prod": "jest --coverage --silent",
"preversion": "yarn install --ignore-engines && npm run build && npm run lint",
"version:alpha": "lerna version prerelease --preid alpha",
"version:beta": "lerna version prerelease --preid beta",
"version:rc": "lerna version prerelease --preid rc",
"version:patch": "lerna version patch",
"version:minor": "lerna version minor",
"version:preminor": "lerna version preminor --preid beta",
"version:major": "lerna version major",
"release": "lerna publish from-package --yes --registry=http://192.168.0.168:4873/",
"lint": "eslint ."
},
"devDependencies": {
"@commitlint/cli": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"@commitlint/prompt-cli": "^14.1.0",
"@formily/template": "^1.0.0-alpha.20",
"@testing-library/jest-dom": "^5.0.0",
"@testing-library/vue": "^5.6.2",
"@types/jest": "^24.0.18",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.8.2",
"@vitejs/plugin-vue-jsx": "^1.3.8",
"@vue/component-compiler-utils": "^3.3.0",
"@vue/test-utils": "1.0.0-beta.22",
"codesandbox": "^2.2.3",
"copy-to-clipboard": "^3.3.1",
"core-js": "^2.4.0",
"element-plus": "^2.0.1",
"eslint": "^7.14.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-markdown": "^2.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-vue": "^8.5.0",
"ghooks": "^2.0.4",
"html-webpack-plugin": "^3.2.0",
"jest": "^27.5.1",
"jest-dom": "^4.0.0",
"lerna": "^4.0.0",
"lint-staged": "^8.2.1",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"raw-loader": "^4.0.0",
"resize-observer-polyfill": "^1.5.1",
"rollup": "^2.70.1",
"rollup-plugin-dts": "^4.2.0",
"rollup-plugin-external-globals": "^0.6.1",
"rollup-plugin-inject-process-env": "^1.3.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"sass": "^1.34.1",
"sass-loader": "^8.0.2",
"stylus": "^0.56.0",
"ts-import-plugin": "^2.0.0",
"ts-jest": "^26.0.0",
"ts-node": "^9.1.1",
"ttypescript": "^1.5.13",
"typescript": "^4.1.5",
"vue": "^3.2.24",
"vue-loader": "^16.8.3",
"vuepress": "^2.0.0-beta.38",
"vuepress-plugin-typescript": "^0.3.1",
"vuepress-theme-dumi": "^0.1.1",
"webpack-dev-server": "^3.5.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/formilyjs/element-plus.git"
},
"config": {
"ghooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint --edit"
}
},
"lint-staged": {
"*.{ts,tsx,js}": [
"eslint --ext .ts,.tsx,.js",
"pretty-quick --staged",
"git add"
],
"*.md": [
"pretty-quick --staged",
"git add"
]
},
"peerDependencies": {
"vue": "^3.2.24"
}
}