forked from gaurav-verma-au3/smart-ads
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 839 Bytes
/
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
{
"name": "smart-ads",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"body-parser": "^1.19.0",
"concurrently": "^5.1.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"mongoose": "^5.9.7",
"morgan": "^1.10.0",
"node-cron": "^2.0.3",
"nodemon": "^2.0.2",
"socket.io": "^2.3.0"
},
"scripts": {
"install-all": "concurrently \"npm install\" \"cd client && npm install\"",
"client": "cd client && npm run dev",
"server": "nodemon server/server.js",
"dev": "concurrently \"nodemon server/server.js\" \"cd client && npm run start\"",
"build": "cd client && npm build",
"start": "node server/server.js",
"heroku-postbuild": "cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"author": "Gaurav Verma"
}