-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.61 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
57
58
59
60
61
62
63
64
{
"name": "hapijs-seed-mvc",
"version": "2.0.0",
"description": "hapi Seed Project - MVC / RDMS",
"author": "Claudio Bredfeldt <[email protected]>",
"license": "MIT",
"main": "index.js",
"repository": {
"url": "https://github.com/cbmono/hapijs-seed-mvc.git"
},
"scripts": {
"start": "gulp",
"test": "gulp test",
"test:unit": "gulp test:unit",
"test:api": "gulp test:api",
"test:coverage": "gulp test:coverage",
"db:seed": "gulp db:seed",
"db:migrate": "gulp db:migrate",
"db:rollback": "gulp db:rollback"
},
"dependencies": {
"babel-core": "^6.9.1",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.6.0",
"blipp": "^2.3.0",
"boom": "^3.1.1",
"config": "^1.17.1",
"good": "^7.0.1",
"good-console": "^6.1.2",
"good-file": "^6.0.1",
"good-squeeze": "^4.0.0",
"hapi": "^13.4.1",
"inert": "^4.0.0",
"joi": "^8.0.0",
"knex": "^0.11.0",
"lodash": "^4.13.1",
"lout": "^9.0.0",
"mysql": "^2.10.0",
"pg": "^5.1.0",
"purdy": "^1.6.0",
"q": "^1.4.1",
"request-promise": "^3.0.0",
"sqlite3": "^3.1.1",
"vision": "^4.0.1",
"winston": "^2.1.1"
},
"devDependencies": {
"babel-istanbul": "^0.8.0",
"babel-register": "^6.9.0",
"glob": "^7.0.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-babel-istanbul": "^1.3.1",
"gulp-codecov": "^2.0.1",
"gulp-jasmine": "^2.2.1",
"gulp-jshint": "^2.0.0",
"gulp-nodemon": "^2.0.6",
"gulp-util": "^3.0.7",
"istanbul": "^0.4.4",
"jshint": "^2.8.0",
"merge-stream": "^1.0.0",
"run-sequence": "^1.1.5"
}
}