generated from getir-nodejs-bootcamp/getirgraduationproject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.75 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
45
{
"name": "getir-nodejs-bootcamp-graduation-project-utkukocaa",
"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": "index.js",
"scripts": {
"test": "jest --watchAll",
"start": "nodemon server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/getir-nodejs-bootcamp/getir-nodejs-bootcamp-graduation-project-utkukocaa.git"
},
"keywords": [],
"author": "Utku KOCA",
"license": "ISC",
"bugs": {
"url": "https://github.com/getir-nodejs-bootcamp/getir-nodejs-bootcamp-graduation-project-utkukocaa/issues"
},
"homepage": "https://github.com/getir-nodejs-bootcamp/getir-nodejs-bootcamp-graduation-project-utkukocaa#readme",
"dependencies": {
"@joi/date": "^2.1.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"express-async-errors": "^3.1.1",
"express-rate-limit": "^6.0.1",
"helmet": "^4.6.0",
"http-status-codes": "^2.1.4",
"joi": "^17.5.0",
"mongoose": "^6.1.3",
"morgan": "^1.10.0",
"swagger-ui-express": "^4.3.0",
"xss-clean": "^0.1.1",
"yamljs": "^0.3.0"
},
"devDependencies": {
"jest": "^27.4.5",
"nodemon": "^2.0.15",
"supertest": "^6.1.6"
},
"engines": {
"node": "16.x"
}
}