-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.6 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "hapi-postgres-boilerplate",
"version": "0.0.0",
"description": "Hapijs Server boilerplate",
"main": "src/index.js",
"scripts": {
"test": "NODE_ENV=test lab -v -c -l -a code -L",
"coveralls": "echo repo_token: $COVERALLS_HAPI_POSTGRES_BOILERPLATE > .coveralls.yml",
"coverage": "NODE_ENV=test npm run coveralls && lab -c -l -a code -r lcov -o lcov.info && cat ./lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm ./lcov.info .coveralls.yml",
"start": "nodemon src/start.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vinicius0026/hapi-postgres-boilerplate.git"
},
"keywords": [
"hapijs",
"boilerplate",
"postgresql",
"postgres"
],
"author": "Vinicius Teixeira <vinicius0026@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vinicius0026/hapi-postgres-boilerplate/issues"
},
"homepage": "https://github.com/vinicius0026/hapi-postgres-boilerplate#readme",
"devDependencies": {
"code": "^5.1.0",
"coveralls": "^3.0.0",
"lab": "^15.1.0",
"nodemon": "^1.12.1",
"standard": "^10.0.3"
},
"dependencies": {
"bcrypt": "^1.0.3",
"boom": "^6.0.0",
"confidence": "^3.0.2",
"dotenv": "^4.0.0",
"glue": "^4.2.0",
"good": "^7.3.0",
"good-console": "^6.4.0",
"good-file": "^6.0.1",
"good-squeeze": "^5.0.2",
"hapi": "^16.6.2",
"hapi-auth-cookie": "^7.0.0",
"inert": "^4.2.1",
"joi": "^13.0.1",
"knex": "^0.13.0",
"lout": "^10.0.3",
"objection": "^0.9.0",
"pg": "^7.3.0",
"ramda": "^0.25.0",
"vision": "^4.1.1"
}
}