-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.26 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
{
"name": "foodtrucks-app",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=9"
},
"dependencies": {
"es6-promise": "^4.2.4",
"fetch-everywhere": "^1.0.5",
"history": "^4.7.2",
"lodash.debounce": "^4.0.8",
"prop-types": "^15.6.0",
"qhistory": "^1.0.0",
"qs": "^6.5.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-google-maps": "^9.4.5",
"react-redux": "^5.0.6",
"react-scripts": "1.1.0",
"redux": "^3.7.2",
"redux-localstorage": "^0.4.1",
"redux-thunk": "^2.2.0",
"styled-components": "^2.4.0"
},
"scripts": {
"heroku-postbuild": "npm run build",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint": "standard ./src/**/*.js | snazzy"
},
"devDependencies": {
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.1",
"faker": "^4.1.0",
"jest-styled-components": "^4.10.0",
"lodash": "^4.17.4",
"snazzy": "^7.0.0",
"standard": "^10.0.3"
},
"standard": {
"globals": [
"it",
"fetch",
"URL"
]
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}