-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 751 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 751 Bytes
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
{
"name": "mybloggingapp",
"version": "1.0.0",
"description": "my blogging app backend",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js"
},
"keywords": [
"blog",
"mongodb",
"api"
],
"author": "Keyur Gandhi",
"license": "ISC",
"devDependencies": {
"nodemon": "^2.0.15"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cloudinary": "^1.28.1",
"cookie-parser": "^1.4.6",
"dotenv": "^11.0.0",
"express": "^4.17.2",
"express-fileupload": "^1.2.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.1.6",
"morgan": "^1.10.0",
"nodemailer": "^6.7.2",
"swagger-ui-express": "^4.3.0",
"validator": "^13.7.0",
"yamljs": "^0.3.0"
}
}