-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 953 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 953 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
28
29
30
31
32
33
34
35
36
37
38
{
"name": "chat",
"version": "0.0.1",
"description": "",
"main": "app.js",
"engines": {
"node": "13.6.0"
},
"scripts": {
"start": "node app.js",
"server": "nodemon app.js",
"build": "cd client && npm run build",
"install-client": "cd client && npm install",
"heroku-postbuild": "npm run install-client && npm run build",
"client": "npm start --prefix client",
"dev": "cross-env NODE_ENV=development concurrently \"npm run server\" \"npm run client\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@hapi/joi": "^17.1.0",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.21.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.8.10",
"multer": "^1.4.2",
"socket.io": "^2.3.0"
},
"devDependencies": {
"concurrently": "^5.0.2",
"cross-env": "^7.0.2",
"nodemon": "^2.0.2"
}
}