-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 979 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
{
"name": "nodejs-mongo-server",
"version": "0.9.0",
"description": "Sample Node.js / MongoDB application",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js"
},
"keywords": [
"nodejs",
"mongodb",
"express"
],
"author": "Alessio Michelini",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-ses": "^3.624.0",
"bcrypt-nodejs": "0.0.3",
"config": "^3.3.12",
"connect-mongo": "^5.1.0",
"cors": "^2.8.5",
"express": "^4.19.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.4.0",
"express-session": "^1.18.0",
"file-stream-rotator": "^1.0.0",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.5.2",
"morgan": "^1.10.0",
"nodemailer": "^6.9.14",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"sha.js": "^2.4.11",
"validator": "^13.12.0"
},
"devDependencies": {
"nodemon": "^3.1.4"
}
}