-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.14 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.14 KB
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
48
49
{
"name": "blogging_api",
"version": "1.0.0",
"description": "Blogging API",
"main": "app.js",
"scripts": {
"test": "jest --coverage --watchAll --detectOpenHandles",
"test-watch": "jest --watch",
"start": "node app.js",
"dev": "nodemon app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Peter-TMK/Blogging_API.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Peter-TMK/Blogging_API/issues"
},
"homepage": "https://github.com/Peter-TMK/Blogging_API#readme",
"dependencies": {
"bcrypt": "^5.1.0",
"body-parser": "^1.20.1",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"express-validator": "^6.14.2",
"helmet": "^6.0.1",
"joi": "^17.7.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.7.0",
"morgan": "^1.10.0",
"morgan-json": "^1.1.0",
"winston": "^3.8.2"
},
"devDependencies": {
"jest": "^29.3.0",
"supertest": "^6.3.1"
},
"jest": {
"modulePathIgnorePatterns": [
"articles.json",
"users.json"
]
}
}