forked from anuraghazra/QuickerPoll
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 809 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 809 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": "quickpoll",
"version": "1.0.0",
"description": "Quick Poll is a polling app",
"main": "./server/server.js",
"scripts": {
"start": "node ./server/server.js",
"watch-server": "nodemon ./server/server.js",
"heroku-postbuild": "cd client && npm install --only=dev && npm install && npm run build",
"dev": "concurrently \"npm run watch-server\" \"cd client && npm start\"",
"prod": "concurrently \"npm run watch-server\" \"cd client && npm serve\""
},
"author": "hazru.anurag@gmail.com",
"license": "MIT",
"dependencies": {
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"mongoose": "^5.7.5",
"morgan": "^1.9.1",
"socket.io": "^2.2.0"
},
"devDependencies": {
"concurrently": "^4.1.0"
}
}