-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.1 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.1 KB
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": "first-app",
"version": "1.0.0",
"description": "My first Node JS app",
"main": "app.js",
"engines": {
"node": "20.12.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node app.js",
"start-server": "node app.js",
"dev": "nodemon app.js"
},
"author": "Erickson Guinto",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.21",
"nodemon": "^3.1.4"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.758.0",
"@aws-sdk/s3-request-presigner": "^3.758.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"compression": "^1.8.0",
"connect-flash": "^0.1.1",
"connect-mongodb-session": "^5.0.0",
"csurf": "^1.11.0",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.19.2",
"express-session": "^1.18.1",
"express-validator": "^7.2.1",
"helmet": "^8.0.0",
"mailtrap": "^3.4.0",
"mongodb": "^5.9.2",
"mongoose": "^7.6.8",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.16",
"pdfkit": "^0.16.0",
"stripe": "^17.6.0"
}
}