-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.3 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
{
"name": "react-ssr",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"webpack:client": "webpack --config webpack.client.js --watch",
"webpack:server": "webpack --config webpack.server.js --watch",
"webpack:start": "nodemon --watch build --exec node build/bundle.js",
"dev": "npm-run-all --parallel webpack:*",
"build": "webpack --config webpack.client.js && webpack --config webpack.server.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"compression": "^1.7.4",
"core-js": "^3.6.5",
"express": "^4.17.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.11.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.10.4",
"@babel/preset-stage-0": "^7.8.3",
"babel-cli": "^6.26.0",
"babel-loader": "^8.1.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^2.5.0"
}
}