-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.21 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": "blog_api",
"private": "true",
"version": "1.0.0",
"description": "A simple blog api",
"main": "index.js",
"scripts": {
"start": "node index.js",
"start:dev": "nodemon index.js",
"test": "jest --detectOpenHandles --forceExit",
"seed": "node ./src/database/seeder.js"
},
"keywords": [],
"author": "Precious Abubakar",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.0",
"cloudinary": "^1.33.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-fileupload": "^1.4.0",
"express-openid-connect": "^2.11.0",
"express-rate-limit": "^6.7.0",
"helmet": "^6.0.1",
"joi": "^17.7.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.4",
"mongoose": "^6.7.0",
"mongoose-unique-validator": "^3.1.0",
"morgan": "^1.10.0",
"morgan-json": "^1.1.0",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^7.1.2",
"swagger-ui-express": "^4.6.0",
"winston": "^3.8.2"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"jest": "^29.2.2",
"mongodb-memory-server": "^8.9.5",
"nodemon": "^2.0.20",
"supertest": "^6.3.1"
}
}