-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 948 Bytes
/
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
{
"name": "api-skeleton",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "NODE_ENV=test lab -t 100",
"test-cov-html": "NODE_ENV=test lab -r html -o coverage.html",
"test-cov-html:open": "NODE_ENV=test lab -r html -o coverage.html && open coverage.html"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@hapi/basic": "^6.0.0",
"@hapi/boom": "^9.1.0",
"@hapi/good": "^9.0.0",
"@hapi/good-console": "^9.0.0",
"@hapi/good-squeeze": "^6.0.0",
"@hapi/hapi": "^19.1.1",
"@hapi/inert": "^6.0.1",
"@hapi/joi": "^17.1.1",
"@hapi/joi-date": "^2.0.1",
"@hapi/vision": "^6.0.0",
"bcrypt": "^4.0.1",
"convict": "^5.2.0",
"hapi-require-https": "^5.0.0",
"hapi-swagger": "^13.0.0",
"nedb": "^1.8.0"
},
"devDependencies": {
"@hapi/code": "^8.0.1",
"@hapi/lab": "^22.0.4"
}
}