-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.16 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
{
"name": "react-e2-project",
"version": "0.0.1",
"private": true,
"devDependencies": {
"enzyme": "^2.8.2",
"react-scripts": "^1.0.1",
"react-test-renderer": "^15.6.1"
},
"dependencies": {
"bootstrap": "^4.0.0",
"react-addons-test-utils": "^15.4.1",
"react-test-renderer": "^15.4.1",
"redux-mock-store": "^1.2.1",
"history": "^4.7.2",
"jest-junit-reporter": "1.1.0",
"json-server": "^0.12.1",
"prop-types": "^15.5.10",
"react": "^15.5.0",
"react-bootstrap": "^0.32.1",
"react-dom": "^15.5.0",
"react-redux": "^5.0.7",
"react-router": "3.2.0",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.9",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-saga": "^0.16.0",
"redux-thunk": "^2.2.0"
},
"scripts": {
"start": "json-server --port 8001 --watch ./server/db.json | PORT=8000 react-scripts start --disable-host-check",
"build": "react-scripts build",
"eject": "react-scripts eject",
"test": "rm -rf ./unit.xml && CI=true ./node_modules/.bin/react-scripts test --verbose=false --env=jsdom --testResultsProcessor ./node_modules/jest-junit-reporter"
}
}