-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.09 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.09 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
{
"name": "rest-api",
"version": "1.0.0",
"description": "Learning node,express and mongo DB",
"main": "app.js",
"scripts": {
"start": "node server.js",
"test": "jest"
},
"author": "Durjoy Dey",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-negotiate": "^0.0.6",
"express-validator": "^6.13.0",
"js2xmlparser": "^4.0.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.13.10",
"morgan": "^1.10.0",
"object-to-xml": "^2.0.0",
"validator": "^13.6.0",
"xml": "^1.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Durjoy001/blog-application-backend.git"
},
"bugs": {
"url": "https://github.com/Durjoy001/blog-application-backend/issues"
},
"homepage": "https://github.com/Durjoy001/blog-application-backend#readme",
"devDependencies": {
"jest": "^27.3.1",
"jest-mock-req-res": "^1.0.2",
"jest-sinon": "^1.0.4",
"mock-req-res": "^1.2.0",
"node-mocks-http": "^1.11.0",
"supertest": "^6.1.6"
}
}