-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.25 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
44
{
"name": "react-ssr",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "concurrently \"npm run dev:client\" \"npm run dev:server\" \"npm run dev:start\"",
"test": "echo \"Error: no test specified\" && exit 1",
"dev:server": "webpack --config webpack.server.js --watch",
"dev:client": "webpack --config webpack.client.js --watch",
"dev:start": "nodemon --watch build --exec node \"./build/bundle.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/zxlzl/react-ssr.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/zxlzl/react-ssr/issues"
},
"homepage": "https://github.com/zxlzl/react-ssr#readme",
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^2.5.0"
},
"dependencies": {
"axios": "^0.20.0",
"babel-loader": "^8.1.0",
"concurrently": "^5.3.0",
"express": "^4.17.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"webpack": "^4.44.0"
}
}