-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.13 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
{
"name": "Project-boilerplate-API",
"version": "1.0.0",
"description": "Secure REST APIs for Any Node-Hapi stack with AWS-SDK installed",
"main": "server/server.js",
"scripts": {
"test": "./node_modules/lab/bin/lab -v",
"start": "nodemon server/server.js",
"lint": "eslint server/**/* --ext .js --fix"
},
"author": "sahil <sahil.kulkarni95@gmail.com>",
"license": "WTFPL",
"repository": {
"type": "git",
"url": "https://github.com/sahilkul95/project-boilerplate-api"
},
"dependencies": {
"@hapi/basic": "^5.1.0",
"@hapi/boom": "^7.4.2",
"@hapi/glue": "^6.1.0",
"@hapi/good": "^8.2.0",
"@hapi/good-console": "^8.1.0",
"@hapi/good-squeeze": "^5.2.0",
"@hapi/hapi": "^18.3.1",
"@hapi/inert": "^5.2.1",
"@hapi/joi": "^15.1.0",
"@hapi/wreck": "^15.0.1",
"aws-sdk": "^2.491.0",
"hapi-swagger": "^10.0.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.6.4",
"request-ip": "^2.1.1",
"vision": "^5.4.4",
"white-out": "^2.0.2"
},
"devDependencies": {
"@hapi/code": "^5.3.1",
"eslint": "^6.0.1",
"lab": "^15.2.0",
"nodemon": "^1.19.1"
}
}