-
Notifications
You must be signed in to change notification settings - Fork 485
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 907 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 907 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
34
35
{
"name": "react-nodejs-example",
"version": "1.0.0",
"description": "example project react with nodejs",
"main": "server.js",
"scripts": {
"start": "node server.bundle.js",
"build": "webpack",
"dev": "nodemon ./server.js localhost 3080"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bbachi/react-nodejs-example.git"
},
"author": "Bhargav Bachina",
"license": "ISC",
"bugs": {
"url": "https://github.com/bbachi/react-nodejs-example/issues"
},
"homepage": "https://github.com/bbachi/react-nodejs-example#readme",
"dependencies": {
"express": "^4.17.1",
"http-proxy-middleware": "^1.0.4"
},
"devDependencies": {
"del": "^5.1.0",
"fancy-log": "^1.3.3",
"gulp": "^4.0.2",
"gulp-zip": "^5.0.1",
"nodemon": "^2.0.4",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-stream": "^5.2.1"
}
}