generated from getir-nodejs-bootcamp/getirgraduationproject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.54 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
{
"name": "getir-nodejs-bootcamp-graduation-project-meroo36",
"version": "1.0.0",
"description": "We’d like you to create a RESTful API with a single endpoint that fetches the data in the provided MongoDB collection and return the results in the requested format.\r Requirements\r - The code should be written in Node.js using express framework\r - The endpoint should just handle HTTP POST requests.\r - The application should be deployed on AWS or Heroku. You don’t need to use any API Gateway, Load Balancers or any other layer than the developed application.\r - The up to date repo should be publicly available in Github, Bitbucket or equivalent.",
"main": "app.js",
"scripts": {
"start": "nodemon src/app.js",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/getir-nodejs-bootcamp/getir-nodejs-bootcamp-graduation-project-meroo36.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/getir-nodejs-bootcamp/getir-nodejs-bootcamp-graduation-project-meroo36/issues"
},
"homepage": "https://github.com/getir-nodejs-bootcamp/getir-nodejs-bootcamp-graduation-project-meroo36#readme",
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"http-status": "^1.5.0",
"joi": "^17.5.0",
"mongoose": "^6.1.3"
},
"devDependencies": {
"nodemon": "^2.0.15",
"jest": "^27.4.5",
"supertest": "^6.1.6"
}
}