-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 970 Bytes
/
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
{
"name": "emp-workspace",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/efoxTeam/emp.git",
"author": "ken <ckken@qq.com>",
"license": "MIT",
"private": true,
"scripts": {
"test": "jest",
"lint": "eslint . --ext js,ts,tsx --fix",
"lv": "lerna version --no-commit-hooks --no-git-tag-version --no-private",
"lp": "lerna publish from-package"
},
"workspaces": [
"packages/**",
"projects/*",
"helpers/*",
"components/*"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^8.3.4",
"@efox/eslint-config-react-prittier-ts": "^1.0.19",
"cross-env": "^7.0.2",
"husky": "^4.2.5",
"jest": "^26.6.3",
"lerna": "^3.22.0",
"lerna-changelog": "^1.0.1",
"lint-staged": "^10.2.7",
"typescript": "^3.9.3"
},
"dependencies": {}
}