-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 925 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
{
"name": "nodejs-blog",
"version": "1.0.0",
"description": "In this project I will be learning about rest api and leveraging it to build a blog using expressjs/Nodejs",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:prod": "cross-env NODE_ENV=production node app.js",
"start-server": "node app.js",
"start:dev": "nodemon app.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.3",
"cloudinary": "^2.5.1",
"compression": "^1.7.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-validator": "^7.2.0",
"helmet": "^8.0.0",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.10.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodejs-blog": "file:"
},
"devDependencies": {
"cross-env": "^7.0.3",
"nodemon": "^3.1.7"
}
}