-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 1.78 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
{
"private": true,
"name": "hookstore-boot",
"scripts": {
"build": "father build",
"changelog": "lerna-changelog",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "eslint --ext .js,.ts,.jsx,.tsx packages/*/src",
"lint:fix": "npm run lint -- --fix",
"ci": "npm run lint && npm run test",
"test": "npm run debug -- --coverage",
"debug": "umi-test",
"precommit": "lint-staged",
"md": "sh scripts/md.sh",
"publish": "npm run md && lerna publish",
"bootstrap": "lerna bootstrap",
"link": "lerna link"
},
"devDependencies": {
"@testing-library/dom": "^6.4.1",
"@testing-library/react": "^9.2.0",
"@types/jest": "^24.0.12",
"@types/react": "^16.8.0",
"@types/react-dom": "^16.8.0",
"@typescript-eslint/eslint-plugin": "^2.2.0",
"@typescript-eslint/parser": "^2.2.0",
"babel-eslint": "^10.0.2",
"chalk": "^2.3.2",
"coveralls": "^3.0.0",
"eslint": "^6.2.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.0.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"expect": "^24.9.0",
"father": "^2.6.6",
"husky": "^0.14.3",
"jest": "^24.9.0",
"lerna": "^3.16.4",
"lerna-changelog": "^0.8.0",
"lint-staged": "^7.2.2",
"mm": "^2.5.0",
"prettier": "^1.14.3",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-testing-library": "^6.0.0",
"typescript": "^3.6.2",
"umi-test": "^1.8.0"
},
"lint-staged": {
"*.{js, ts, jsx, tsx}": [
"prettier --trailing-comma all --single-quote --write",
"git add"
]
},
"license": "MIT"
}