-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
77 lines (77 loc) · 2.16 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
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"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",
"build": "babel-node --presets es2015,stage-0 ./src/index.js",
"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-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-register": "*",
"blipp": "^2.3.0",
"boom": "^4.2.0",
"config": "^1.21.0",
"glob": "*",
"good": "^7.0.2",
"good-console": "^6.1.2",
"good-file": "^6.0.1",
"good-squeeze": "^5.0.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"hapi": "^15.1.1",
"inert": "^4.0.2",
"joi": "^10.0.0",
"knex": "^0.12.6",
"lodash": "^4.16.4",
"lout": "^9.2.0",
"mysql": "^2.11.1",
"pg": "^6.1.0",
"purdy": "^2.2.0",
"sqlite3": "^3.1.7",
"vision": "^4.1.0",
"winston": "^2.2.0"
},
"devDependencies": {
"babel-eslint": "^7.0.0",
"babel-istanbul": "^0.11.0",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-plugin-transform-regenerator": "*",
"babel-preset-stage-0": "^6.16.0",
"eslint": "^3.8.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.1.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1",
"gulp-babel-istanbul": "^1.5.0",
"gulp-codecov": "^2.0.2",
"gulp-eslint": "^3.0.1",
"gulp-file-cache": "0.0.1",
"gulp-jasmine": "^2.4.2",
"gulp-nodemon": "^2.2.1",
"gulp-util": "^3.0.7",
"istanbul": "^0.4.5",
"merge-stream": "^1.0.0",
"node-fetch": "^1.6.3",
"run-sequence": "^1.2.2",
"watch": "^1.0.1"
}
}