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
|
{
"name": "seven-wonders-client",
"version": "0.1.0",
"private": true,
"devDependencies": {
"babel-polyfill": "latest",
"flow-bin": "^0.46.0",
"flow-typed": "^2.1.2",
"prettier-eslint-cli": "^4.0.1",
"react-scripts": "1.0.5"
},
"dependencies": {
"normalizr": "^3.2.3",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-redux": "^5.0.1",
"react-redux-toastr": "^6.2.6",
"react-router": "^3.0.2",
"react-router-redux": "^4.0.8",
"rebass": "^0.3.3",
"redux": "^3.6.0",
"redux-saga": "^0.13.0",
"redux-saga-router": "^2.1.0",
"redux-seamless-immutable": "^0.3.0",
"reflexbox": "^2.2.3",
"reselect": "^3.0.1",
"seamless-immutable": "^7.1.2",
"sockjs-client": "^1.1.4",
"webstomp-client": "^1.0.6"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"test:oneshot": "set CI=true && react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"prettier": "prettier-eslint --write '{src,__{tests,mocks}__}/**/*.js'",
"flow": "flow",
"postinstall": "flow-typed install"
},
"proxy": "http://localhost:8080"
}
|