-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.14 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.14 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
{
"name": "nodejs-api-development",
"version": "1.0.0",
"description": "## Prerequisites * Node.js - Download and Install [Node.js](http://www.nodejs.org/download/). * MongoDB - Download and Install [MongoDB](http://www.mongodb.org/downloads) - Make sure it's running on the default port (27017).",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"test": "jest",
"docker:build": "docker build -t nodejs-api-development:latest .",
"docker-compose:up": "docker-compose up"
},
"dependencies": {
"body-parser": "^1.19.0",
"config": "^3.3.6",
"dotenv": "^10.0.0",
"express": "4.17.1",
"http-errors": "^1.8.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.13.2",
"mongoose-id-validator": "^0.6.0",
"morgan": "^1.10.0",
"supertest": "^6.1.3",
"swagger-ui-express": "^4.1.6",
"winston": "3.3.3",
"yamljs": "^0.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Training360/nodejs-api-development.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"jest": "^27.0.6",
"jest-mock-req-res": "^1.0.2"
}
}