-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
68 lines (68 loc) · 1.64 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
67
68
{
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@types/enzyme": "^3.10.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/graphql": "^14.5.0",
"@types/jest": "^23.3.9",
"@types/prop-types": "^15.7.1",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"@types/react-redux": "^7.1.2",
"@types/react-test-renderer": "^16.9.0",
"@types/redux": "^3.6.0",
"coveralls": "^3.0.2",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"graphql": "^14.5.1",
"graphql-tag": "^2.10.1",
"husky": "^1.1.4",
"jest": "^24.8.0",
"jest-environment-enzyme": "^7.0.1",
"jest-enzyme": "^7.0.1",
"lerna": "^3.16.1",
"lint-staged": "^8.0.5",
"prettier": "^1.15.2",
"prop-types": "^15.6.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-redux": "^7.1.0",
"react-test-renderer": "^16.9.0",
"redux": "^4.0.4",
"ts-jest": "^23.10.4",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.16.0",
"typescript": "^4.7.2"
},
"resolutions": {
"babel-plugin-istanbul": "file:./babel-plugin-istanbul.tgz"
},
"scripts": {
"test": "jest",
"build": "lerna run build",
"lint": "lerna run lint",
"check-types": "lerna run check-types"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{ts,tsx}": [
"yarn prettier --write",
"yarn build",
"yarn check-types",
"yarn lint",
"git add"
],
"**/*.{js,jsx,json,css,md}": [
"yarn prettier --write",
"git add"
]
}
}