-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
62 lines (62 loc) · 1.74 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
{
"name": "root",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "rimraf packages/*/lib",
"lint": "eslint packages/*/src/**/*.{ts,tsx}",
"build": "cross-env NODE_ENV=production lerna run build",
"watch": "cross-env NODE_ENV=development lerna run watch --parallel --concurrency 5",
"changelog": "rimraf CHANGELOG.md && node scripts/changelog",
"prerelease": "yarn clean && yarn build",
"release": "lerna publish",
"postrelease": "yarn changelog"
},
"engines": {
"node": ">= 10.13.0"
},
"devDependencies": {
"@types/node": "10.x",
"@types/react": "^16.9.35",
"@types/react-native": "^0.62.10",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"@umijs/runtime": "^3.0.0",
"@umijs/types": "^3.0.0",
"conventional-changelog": "^3.1.18",
"cross-env": "^7.0.2",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.10.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"lerna": "^3.20.2",
"lint-staged": "^10.1.6",
"prettier": "^2.0.4",
"react": "^16.13.1",
"rimraf": "^3.0.2",
"typescript": "~3.9.5",
"validate-commit-msg": "^2.14.0"
},
"workspaces": [
"packages/*"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "validate-commit-msg"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
}
}