-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 736 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 736 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
{
"name": "react-node-boilerplate",
"version": "1.0.0",
"description": "A React Js and Node Js boilerplate for building a new project. It uses create-react-app",
"main": "server.js",
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"client-install": "npm install --prefix client",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"engines": {
"node": "10.10.0"
},
"author": "Imran Sayed",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.3",
"concurrently": "^4.0.1",
"cors": "^2.8.5",
"express": "^4.16.3",
"mongoose": "^5.7.5",
"path": "^0.12.7",
"validator": "^10.8.0"
}
}