forked from hug-sun/element3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.03 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "yarn",
"build": "yarn workspace element3 build && yarn workspace website build",
"test": "yarn workspace element3 test",
"lint": "eslint --ext .js packages/element3/packages/** packages/*/src/** ",
"release": "node scripts/release.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"license": "MIT",
"gitHooks": {
"commit-msg": "node scripts/verifyCommit.js"
},
"lint-staged": {
"*.{js,vue}": "eslint"
},
"devDependencies": {
"@vue/eslint-config-prettier": "^6.0.0",
"babel-eslint": "^10.1.0",
"chalk": "^4.1.0",
"conventional-changelog-cli": "^2.1.1",
"cross-env": "^7.0.3",
"enquirer": "^2.3.6",
"eslint": "^7.15.0",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-vue": "^7.2.0",
"execa": "^5.0.0",
"lint-staged": "^10.5.3",
"minimist": "^1.2.5",
"prettier": "^2.2.1",
"yorkie": "^2.0.0"
}
}