-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 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
63
64
65
66
{
"name": "root",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "yarn",
"build": "lerna run build",
"test": "yarn workspaces run test",
"coverage": "codecov",
"clean": "yarn workspaces run clean",
"fmt": "prettier --write packages/**/{*.ts,*.tsx}",
"eslint": "eslint packages/**/*.{ts,tsx} --fix",
"publish": "yarn build && lerna publish",
"publish:ci": "yarn build && lerna publish --canary --yes",
"prepare": "husky install",
"commit": "cz"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@types/jest": "^24.0.15",
"@types/lodash": "^4.14.134",
"@types/node": "^11.13.14",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"codecov": "^3.8.3",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.22.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^5.2.0",
"jest": "^24.8.0",
"lerna": "^3.15.0",
"lerna-changelog": "^0.8.2",
"lint-staged": "^10.5.4",
"lodash": "^4.17.11",
"prettier": "^2.2.1",
"ts-jest": "^24.0.2",
"typescript": "^4.2.3"
},
"lint-staged": {
"**/*.ts": [
"echo 'lint stage run'",
"prettier --write --ignore-unknown",
"eslint --fix"
],
"*.{json.css,md,yml,yaml}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@zcorky/tsconfig": "^0.0.3"
}
}