-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 849 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 849 Bytes
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
{
"name": "react-ssr-example",
"version": "1.0.0",
"description": "React server side rendering example",
"scripts": {
"build": "webpack",
"start": "npm run build && node server.js"
},
"keywords": ["react", "ssr", "node", "redux", "express"],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"ejs": "^3.1.6",
"express": "^4.17.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"react-router-config": "^5.1.1",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/preset-env": "^7.13.9",
"@babel/preset-react": "^7.12.13",
"@babel/register": "^7.13.8",
"babel-loader": "^8.2.2",
"webpack": "^5.24.3",
"webpack-cli": "^4.5.0"
}
}