-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.23 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
{
"name": "hapi-skeleton",
"version": "0.0.0",
"description": "Boilerplate code for REST API in hapi",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"dependencies": {
"bookshelf": "^0.8.1",
"create-boom-error": "^0.1.0",
"hapi": "^8.5.1",
"hapi-auth-basic": "^2.0.0",
"hapi-bookshelf-models": "^1.3.1",
"knex": "^0.8.6",
"nconf": "^0.7.1",
"sqlite3": "^3.0.8"
},
"scripts": {
"pretest": "npm run migrate && npm run seed",
"test": "lab -c -p -v",
"start": "node lib/index.js",
"create-migration": "knex --knexfile db/knexfile.js migrate:make",
"migrate": "knex --knexfile db/knexfile.js migrate:latest",
"rollback": "knex --knexfile db/knexfile.js migrate:rollback",
"create-seed": "knex --knexfile db/knexfile.js seed:make",
"seed": "knex --knexfile db/knexfile.js seed:run"
},
"repository": {
"type": "git",
"url": "https://github.com/pon/hapi-skeleton.git"
},
"keywords": [
"API",
"hapi"
],
"author": "Peter Nagel",
"license": "MIT",
"bugs": {
"url": "https://github.com/pon/hapi-skeleton/issues"
},
"homepage": "https://github.com/pon/hapi-skeleton",
"devDependencies": {
"code": "^1.4.0",
"lab": "^5.9.0"
}
}