-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
47 lines (47 loc) · 1.17 KB
/
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
46
47
{
"name": "BlogLog",
"version": "1.0.0",
"description": "A blogging platform built with Node.js and Express",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node app.js",
"dev": "nodemon app.js"
},
"keywords": [
"blog",
"node.js",
"express",
"mongodb"
],
"author": "Your Name",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"cloudinary": "^1.41.3",
"connect-flash": "^0.1.1",
"connect-mongo": "^5.1.0",
"cookie-parser": "^1.4.6",
"dotenv": "^16.4.5",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-ejs-layouts": "^2.5.1",
"express-session": "^1.18.1",
"express-validator": "^7.2.0",
"jsonwebtoken": "^9.0.2",
"method-override": "^3.0.0",
"mongodb": "^6.6.2",
"mongoose": "^7.8.2",
"morgan": "^1.10.0",
"nodemailer": "^6.9.15",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"rotating-file-stream": "^3.2.5",
"zod": "^3.23.8",
"multer": "^1.4.5-lts.1",
"multer-storage-cloudinary": "^4.0.0"
},
"devDependencies": {
"nodemon": "^2.0.22"
}
}