-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1017 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "chat-app",
"version": "1.0.0",
"description": "",
"main": "server.js",
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": false,
"printWidth": 100
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon server.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"agora-token": "^2.0.3",
"bcrypt": "^5.1.1",
"cloudinary": "^1.41.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"mongoose": "^8.0.3",
"mongoose-paginate-v2": "^1.8.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.13",
"redis": "^4.6.13",
"slugify": "^1.6.6",
"socket.io": "^4.7.2",
"streamifier": "^0.1.1",
"uuid": "^9.0.1",
"validator": "^13.11.0"
},
"devDependencies": {
"nodemon": "^3.1.0"
}
}