forked from rharshit82/PeerCode
-
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) · 704 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 704 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": "server",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "cd client && npm run build",
"install-client": "cd client && npm install",
"heroku-postbuild": "npm run install-client && npm run build",
"start": "nodemon server.js",
"client": "cd client && npm start"
},
"author": "Harshit Raj",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.1",
"cors": "^2.8.5",
"dotenv": "^14.1.0",
"express": "^4.17.2",
"mongoose": "^6.1.6",
"morgan": "^1.10.0",
"nodemon": "^2.0.15",
"socket.io": "^4.4.1",
"uuidv4": "^6.2.13"
}
}