-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 897 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
28
29
30
31
{
"name": "messenger",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"server":"nodemon backend/server.js",
"client-install":"npm install --force --prefix frontend",
"socket-install":"npm install --force --prefix socket",
"socket":"npm run socket --prefix socket",
"client":"npm start --prefix frontend",
"client-fix":"npm audit fix --force --prefix frontend",
"dev":"concurrently \" npm run server \" \" npm run socket \" \" npm run client \""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"concurrently": "^6.2.0",
"cookie-parser": "^1.4.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"formidable": "^1.2.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.13.2",
"nodemon": "^2.0.12",
"validator": "^13.6.0"
}
}