-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.7 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
{
"name": "mars-rover",
"version": "0.1.1",
"private": true,
"keywords": [
"react",
"redux",
"hooks",
"mars",
"rover"
],
"author": "Adam Henson <adamhenson1979@gmail.com> (https://github.com/adamhenson)",
"dependencies": {
"@foo-software/react-lazy-offscreen-image": "0.0.17",
"@foo-software/react-scroll-context": "0.0.18",
"@material/react-button": "^0.12.1",
"@material/react-dialog": "^0.14.1",
"@material/react-material-icon": "^0.12.0",
"@material/react-radio": "^0.15.0",
"@material/react-snackbar": "^0.14.1",
"@material/react-text-field": "^0.15.0",
"classnames": "^2.2.6",
"lodash.get": "^4.4.2",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-infinite-calendar": "^2.3.1",
"react-redux": "^7.1.1",
"react-scripts": "2.1.8",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"serve": "^11.1.0",
"uuid": "^3.3.3"
},
"scripts": {
"clean": "rimraf build",
"dev": "react-scripts start",
"build": "npm run clean && react-scripts build",
"start": "npm run build && serve -s build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --single-quote --write",
"git add"
]
},
"devDependencies": {
"husky": "^3.0.1",
"lint-staged": "^9.2.0",
"prettier": "^1.18.2",
"react-test-renderer": "^16.9.0",
"rimraf": "^2.7.1"
}
}