forked from sela-rhinops/bootcamp-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 864 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
{
"name": "node-weight-tracker",
"version": "1.0.0",
"description": "Sample Node.js web application using hapi, PostgreSQL, and Okta",
"main": "src/index.js",
"scripts": {
"dev": "nodemon --watch src -e css,ejs,js src/index.js",
"initdb": "node tools/initdb.js",
"lint": "eslint --fix ./",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "David Neal <[email protected]> (https://reverentgeek.com)",
"license": "MIT",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-reverentgeek": "^2.0.1",
"nodemon": "^2.0.2"
},
"dependencies": {
"@hapi/bell": "^12.0.0",
"@hapi/boom": "^9.0.0",
"@hapi/cookie": "^11.0.0",
"@hapi/hapi": "^19.1.1",
"@hapi/inert": "^6.0.1",
"@hapi/joi": "^17.0.2",
"@hapi/vision": "^6.0.0",
"dotenv": "^8.2.0",
"ejs": "^3.0.1",
"postgres": "^1.0.1"
}
}