-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.39 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "drinks",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^3.9.1",
"@material-ui/icons": "^3.0.2",
"@reach/router": "^1.2.1",
"axios": "^0.19.0",
"classnames": "^2.2.6",
"formik": "^1.5.4",
"he": "^1.2.0",
"notistack": "^0.8.2",
"querystring": "^0.2.0",
"ramda": "^0.26.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^6.0.1",
"react-scripts": "^2.1.8",
"react-select": "^2.4.3",
"recompose": "^0.30.0",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"throttle-debounce": "^2.1.0",
"typescript": "3.2.4",
"typescript-fsa": "^3.0.0-beta-2",
"typescript-fsa-reducers": "^1.2.0",
"yup": "^0.27.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@types/classnames": "^2.2.7",
"@types/he": "^1.1.0",
"@types/jest": "^24.0.13",
"@types/node": "10.12.18",
"@types/ramda": "^0.26.8",
"@types/reach__router": "^1.2.3",
"@types/react": "^16.8.19",
"@types/react-dom": "^16.8.4",
"@types/react-redux": "^7.0.1",
"@types/react-select": "^2.0.11",
"@types/recompose": "^0.30.3",
"@types/throttle-debounce": "^1.1.0",
"@types/yup": "^0.26.13",
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"patch-package": "^6.1.2",
"postinstall-postinstall": "^2.0.0",
"prettier": "^1.18.2",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.17.0",
"tslint-react": "^3.6.0"
},
"scripts": {
"ci:test": "NODE_PATH=./ CI=true react-scripts test",
"ci:test:coverage": "NODE_PATH=./ CI=true react-scripts test --coverage",
"start": "NODE_PATH=./ BROWSER=none react-scripts start",
"build": "NODE_PATH=./ react-scripts build",
"test": "NODE_PATH=./ react-scripts test",
"eject": "NODE_PATH=./ react-scripts eject",
"type": "NODE_PATH=./ tsc --noEmit",
"lint": "NODE_PATH=./ tslint src/**/*.{ts,tsx}",
"format": "NODE_PATH=./ prettier 'src/**/*.{ts,tsx}' --write",
"postinstall": "patch-package"
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn format",
"yarn lint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn ci:test && yarn type && lint-staged && yarn format && git add ."
}
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}