-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.3 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.3 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
39
40
41
42
43
44
45
46
47
48
{
"name": "dnode",
"version": "1.0.0",
"description": "A boilerplate REST API application built with hapijs",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon --inspect index.js",
"prod": "pm2 --watch index.js",
"lint": "./node_modules/eslint/bin/eslint.js ."
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/dubkrapht/dnode.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dubkrapht/dnode/issues"
},
"homepage": "https://github.com/dubkrapht/dnode#readme",
"dependencies": {
"@hapi/basic": "^5.1.1",
"@hapi/bell": "^11.1.0",
"@hapi/cookie": "^10.1.2",
"@hapi/good": "^8.2.3",
"@hapi/good-console": "^8.1.2",
"@hapi/good-squeeze": "^5.2.1",
"@hapi/hapi": "^20.0.0",
"@hapi/inert": "^6.0.1",
"@hapi/joi": "^16.1.7",
"@hapi/joi-date": "^2.0.1",
"@hapi/vision": "^6.0.0",
"awilix": "^6.1.0",
"bcrypt": "^6.0.0",
"dotenv": "^8.1.0",
"hapi-auth-jwt2": "^9.0.0",
"hapi-swagger": "^14.5.4",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"nodemailer": "^7.0.11"
},
"devDependencies": {
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2"
}
}