-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.38 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
{
"name": "book-store",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^1.5.1",
"@material-ui/icons": "^1.1.0",
"babel-polyfill": "^6.26.0",
"connected-react-router": "^4.3.0",
"cross-fetch": "^2.2.2",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.4.0",
"history": "^4.7.2",
"http-status-codes": "^1.3.0",
"json-server": "^0.14.0",
"prop-types": "latest",
"query-string": "^6.1.0",
"ramda": "^0.25.0",
"react": "^16.4.1",
"react-css-modules": "^4.7.4",
"react-dom": "^16.4.1",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-scripts": "1.1.4",
"redux": "^4.0.0",
"redux-form": "^7.4.2",
"redux-persist": "^5.10.0",
"redux-thunk": "^2.3.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"json-server": "json-server --port 3004 --watch demo-json-server/db.json --snapshots demo-json-server"
},
"devDependencies": {
"enzyme-to-json": "^3.3.4",
"husky": "^1.0.0-rc.13",
"prettier": "1.14.2",
"promise-polyfill": "^8.1.0",
"redux-mock-store": "^1.5.3"
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
}
}