-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 909 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": "chatapp",
"version": "1.0.0",
"description": "react,express,socket,redis,pm2 chat app",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"client-install": "npm install --prefix client",
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"pm2": "pm2 start ecosystem.config.js",
"stop-pm2": "pm2 stop ecosystem.config.js"
},
"author": "Ofer Elfassi",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"concurrently": "^4.1.0",
"express": "^4.16.4",
"express-validator": "^5.3.1",
"jsonwebtoken": "^8.5.1",
"prop-types": "^15.7.2",
"redis": "^2.8.0",
"socket.io": "^2.2.0",
"socket.io-redis": "^5.2.0",
"uuid": "^3.3.2"
}
}