generated from getir-nodejs-bootcamp/getirgraduationproject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.66 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
{
"name": "getir-nodejs-bootcamp-graduation-project-gurcangul",
"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.",
"private": true,
"scripts": {
"start": "node app.js",
"start-dev": "nodemon app.js",
"test": "mocha --color --timeout 15000 'src/test/**/*.js'"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^10.0.0",
"express": "~4.16.1",
"hbs": "~4.0.4",
"http-errors": "~1.6.3",
"moment": "^2.29.1",
"mongoose": "^5.13.5",
"morgan": "~1.9.1",
"nodemon": "^2.0.12"
},
"repository": {
"type": "git",
"url": "git+https://github.com/getir-nodejs-bootcamp/getir-nodejs-bootcamp-graduation-project-gurcangul.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/getir-nodejs-bootcamp/getir-nodejs-bootcamp-graduation-project-gurcangul/issues"
},
"homepage": "https://github.com/getir-nodejs-bootcamp/getir-nodejs-bootcamp-graduation-project-gurcangul#readme",
"devDependencies": {
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"kill-port": "^1.6.1",
"mocha": "^9.0.3",
"rewire": "^5.0.0"
}
}