-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.29 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": "nodejs-with-mongodb-api-example",
"version": "1.0.0",
"description": "<img src=https://i.imgur.com/eDNZeqh.png alt='Swagger Page of that application' title='Swagger Page of that application'/>",
"main": "index.js",
"scripts": {
"build": "npx typescript",
"build:watch": "npx typescript -w",
"dev": "npx concurrently \"npm run build\" \"npm run dev:run\"",
"dev:watch": "npx concurrently \"npm run build:watch\" \"npm run dev:run\"",
"dev:run": "npx nodemon lib/index.js",
"start": "node lib/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ErickWendel/nodejs-with-mongodb-api-example.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ErickWendel/nodejs-with-mongodb-api-example/issues"
},
"homepage": "https://github.com/ErickWendel/nodejs-with-mongodb-api-example#readme",
"devDependencies": {
"concurrently": "^4.1.1",
"nodemon": "1.19.1",
"typescript": "^3.7.3"
},
"dependencies": {
"@hapi/hapi": "18.3.1",
"@hapi/inert": "5.2.1",
"@hapi/joi": "15.1.0",
"@hapi/vision": "5.5.2",
"@types/mongodb": "3.1.32",
"hapi-swagger": "10.0.2",
"mongodb": "3.3.0-beta2"
}
}