-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.01 KB
/
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
28
29
30
31
32
33
34
{
"name": "server",
"version": "1.0.0",
"description": "Backend for social media application",
"main": "server.js",
"repository": "https://github.com/stanleyclaudius/social-media",
"author": "Stanley Claudius",
"license": "MIT",
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"client": "cd client && yarn run start",
"server-install": "yarn install",
"client-install": "cd client && yarn install",
"install-all": "concurrently \"yarn run server-install\" \"yarn run client-install\" ",
"dev": "concurrently \"yarn run server\" \"yarn run client\" ",
"heroku-postbuild": "cd client && yarn install && yarn run build"
},
"dependencies": {
"bcrypt": "^5.0.1",
"concurrently": "^6.4.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.0.5",
"peer": "^0.6.1",
"socket.io": "^4.2.0"
},
"devDependencies": {
"nodemon": "^2.0.12"
}
}