-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 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
{
"name": "nodejs-restapi-getir-interv",
"version": "1.0.0",
"description": "a RESTful API with a single endpoint that fetches the data in the provided MongoDB collection and return the results in the requested format",
"main": "service.js",
"scripts": {
"start": "node ./service.js PORT=3001",
"dev": "nodemon ./service.js localhost 3001",
"test": "jest",
"test:watch": "jest --watchAll",
"debug": "node --inspect-brk=localhost:3001 node_modules/.bin/jest --runInBand -t",
"swaggerauto": "node ./swagger.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dewelloper/adelin.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "hhttps://github.com/dewelloper/adelin.gitissues"
},
"homepage": "https://github.com/bbachi/nodejs-restapi-mongo#readme",
"dependencies": {
"debug": "^4.3.2",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jest": "^27.2",
"mongodb": "^4.1.3",
"mongoose": "^6.0.12",
"object-mapper": "^6.2.0",
"pine": "^1.1.1",
"swagger-ui-express": "^4.1.6"
},
"devDependencies": {
"nodemon": "^2.0.14",
"swagger-autogen": "^2.12.6"
},
"engines": {
"node": "17.0.1"
}
}