-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 814 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 814 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
{
"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": {
"aws-sdk": "^2.814.0",
"body-parser": "^1.18.3",
"concurrently": "^4.0.1",
"express": "^4.16.3",
"mongoose": "^5.7.5",
"multer": "^1.4.0",
"multer-s3": "^2.7.0",
"path": "^0.12.7",
"url": "^0.11.0",
"validator": "^13.7.0"
}
}