-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 924 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
33
34
35
36
37
38
39
40
41
{
"name": "hapiApi-seed",
"version": "1.0.0",
"description": "A small seed web project to demo hapi with linting and testing baked in",
"main": "src/app.js",
"engines": {
"node": ">=6.10.0",
"npm": ">=3.10.10"
},
"scripts": {
"start": "node src/server.js",
"test": "grunt"
},
"files": [
"src"
],
"repository": {
"type": "git",
"url": "[email protected]:DamianStanger/hapiAPI-seed.git"
},
"devDependencies": {
"code": "^4.0.0",
"dredd": "^3.4.5",
"grunt": "^1.0.1",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-eslint": "^19.0.0",
"grunt-shell": "^2.0.0",
"lab": "^13.0.1",
"load-grunt-tasks": "^3.5.0",
"time-grunt": "^1.3.0"
},
"dependencies": {
"good": "^7.1.0",
"good-console": "^6.4.0",
"good-squeeze": "^5.0.2",
"hapi": "^16.1.1",
"joi": "^10.5.2",
"boom": "^5.1.0"
}
}