-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 881 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 881 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
36
37
{
"name": "blogging-api",
"version": "1.0.0",
"description": "blogging API",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.0",
"body-parser": "^1.20.1",
"dotenv": "^16.0.3",
"ejs": "^3.1.8",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"helmet": "^6.0.1",
"joi": "^17.7.0",
"jsonwebtoken": "^8.5.1",
"marked": "^4.1.1",
"method-override": "^3.0.0",
"moment": "^2.29.4",
"mongodb-memory-server": "^8.9.5",
"mongoose": "^6.7.0",
"morgan": "^1.10.0",
"morgan-json": "^1.1.0",
"nodemon": "^2.0.20",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"slugify": "^1.6.5",
"winston": "^3.8.2"
}
}