-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 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
{
"name": "blogging_api",
"version": "1.0.0",
"description": "A Blogging API",
"main": "app.js",
"scripts": {
"test": "jest --testTimeout=9000",
"pretest": "cross-env NODE-ENV=test",
"start": "node app.js",
"dev": "nodemon app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aanu-el/blogging_api.git"
},
"author": "Peace Faleke",
"license": "ISC",
"bugs": {
"url": "https://github.com/aanu-el/blogging_api/issues"
},
"homepage": "https://github.com/aanu-el/blogging_api#readme",
"dependencies": {
"@sentry/node": "^7.29.0",
"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",
"mongoose": "^6.7.0",
"nodemon": "^2.0.20",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"jest": "^29.2.2",
"supertest": "^6.3.1"
}
}