-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.3 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
{
"name": "client",
"version": "0.1.0",
"private": true,
"engines": {
"node": "^12.9.1",
"npm": "^6.10.2"
},
"devDependencies": {
"husky": "1.2.1",
"lint-staged": "12.5.0",
"prettier": "1.15.3",
"react-scripts": "3.4.4"
},
"dependencies": {
"@material-ui/core": "4.12.4",
"@material-ui/icons": "4.11.3",
"@react-oauth/google": "0.12.x",
"classnames": "2.2.6",
"copy-to-clipboard": "3.2.0",
"react-copy-to-clipboard": "5.1.0",
"downshift": "^1.31.14",
"fetch-mock": "6.0.0",
"moment": "2.29.4",
"prop-types": "15.7.2",
"query-string": "5",
"react": "16.8.5",
"react-dom": "16.8.5",
"react-router-dom": "5.3.4",
"react-storage-hooks": "3.0.1",
"redux": "4.0.0",
"typeface-roboto": "0.0.54"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --config ./.prettierrc",
"prettier --write"
]
},
"scripts": {
"start": "HOST=lvh.me react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"proxy": "http://lvh.me:4010",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}