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
|
{
"name": "seven-wonders-client",
"version": "0.1.0",
"private": true,
"devDependencies": {
"cross-env": "^5.2.0",
"prettier-eslint-cli": "^4.7.1",
"react-scripts": "3.0.0"
},
"dependencies": {
"@blueprintjs/core": "^3.15.1",
"@blueprintjs/icons": "^3.8.0",
"@types/jest": "^24.0.12",
"@types/node": "^11.13.8",
"@types/react": "^16.8.15",
"@types/react-dom": "^16.8.4",
"@types/react-redux": "^7.0.8",
"@types/react-router-dom": "^4.3.3",
"@types/react-router-redux": "^5.0.18",
"@types/sockjs-client": "^1.1.1",
"history": "^4.9.0",
"http-proxy-middleware": "^0.19.1",
"immutable": "^4.0.0-rc.12",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-router-redux": "^5.0.0-alpha.9",
"react-transition-group": "^2.6.0",
"redux": "^4.0.0",
"redux-devtools-extension": "^2.13.8",
"redux-immutable": "^4.0.0",
"redux-saga": "^0.16.0",
"reflexbox": "^3.0.1",
"sockjs-client": "^1.1.4",
"typescript": "^3.4.5",
"webstomp-client": "^1.0.6"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"test:oneshot": "cross-env CI=true react-scripts test --env=jsdom --passWithNoTests",
"eject": "react-scripts eject",
"prettier": "prettier-eslint --print-width 120 --write '{src,__{tests,mocks}__}/**/*.js'"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}
|