-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 1007 Bytes
/
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
{
"private": true,
"scripts": {
"build": "webpack --config webpack.config.server.js&&webpack --config webpack.config.client.js",
"start": "npm run build&&node dist/server.js"
},
"dependencies": {
"connected-react-router": "^4.3.0",
"express": "^4.16.3",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-helmet": "^5.2.0",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"recompose": "^0.27.1",
"redux": "^4.0.0",
"styled-components": "^3.3.3"
},
"devDependencies": {
"@types/express": "^4.16.0",
"@types/react": "^16.4.6",
"@types/react-dom": "^16.0.6",
"@types/react-helmet": "^5.0.6",
"@types/react-redux": "^6.0.4",
"@types/react-router": "^4.0.28",
"@types/react-router-dom": "^4.2.7",
"@types/recompose": "^0.26.1",
"ts-loader": "^4.4.2",
"typescript": "^2.9.2",
"webpack": "^4.15.1",
"webpack-cli": "^3.0.8",
"webpack-node-externals": "^1.7.2"
}
}