-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 983 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
{
"name": "partial-content-streaming",
"version": "1.0.0",
"description": "Online Music Streaming",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"dev": "set NODE_ENV=development&&nodemon server.js",
"start:prod": "set NODE_ENV=production&&nodemon server.js"
},
"author": "Rohith M S R",
"license": "ISC",
"devDependencies": {
"dotenv": "^16.0.3"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^6.7.0",
"helmet": "^6.0.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.12.1",
"mongoose": "^6.7.3",
"multer": "^1.4.2",
"multer-gridfs-storage": "^5.0.2",
"nodemailer": "^6.8.0",
"sib-api-v3-sdk": "^8.4.2",
"validator": "^13.7.0",
"xss-clean": "^0.1.1"
},
"engines": {
"node": "^16"
}
}