forked from hug-sun/element3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.1 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "yarn",
"build": "yarn workspace element3 build && yarn workspace website build",
"build#website": "yarn workspace website build",
"test": "yarn workspace element3 test",
"test:coverage": "yarn workspace element3 test:coverage",
"lint": "eslint --ext .js --ext .vue --ext .ts packages/element3/packages/** packages/*/src/** --no-error-on-unmatched-pattern",
"release": "node scripts/release.js",
"clean": "rm -rf node_modules && rm -rf packages/*/node_modules && yarn cache clean",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"dev#element3": "yarn workspace element3 dev",
"dev#website": "yarn workspace website dev",
"dev:play#website": "yarn workspace website dev:play",
"dev": "node scripts/runCmd.js \"yarn dev#element3\" \"yarn dev#website\"",
"dev:play": "node scripts/runCmd.js \"yarn dev#element3\" \"yarn dev:play#website\""
},
"license": "MIT",
"gitHooks": {
"commit-msg": "node scripts/verifyCommit.js",
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"eslint",
"prettier --write"
],
"*.ts?(x)": [
"eslint",
"prettier --parser=typescript --write"
]
},
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.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",
"jest": "^26.6.3",
"jest-environment-jsdom-sixteen": "^1.0.3",
"lint-staged": "^10.5.3",
"minimist": "^1.2.5",
"prettier": "^2.2.1",
"ts-jest": "26.4.4",
"typescript": "^4.1.3",
"yorkie": "^2.0.0"
}
}