forked from dwyl/hapi-typescript-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.75 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
{
"name": "typescript-node",
"version": "1.3.1",
"description": "",
"license": "MIT",
"repository": {
"url": "https://github.com/dwyl/hapi-typescript-example.git"
},
"author": "Talento90",
"keywords": [
"typescript",
"project structure",
"nodejs"
],
"scripts": {
"tsc": "tsc",
"tsc-watch": "tsc -w",
"build": "gulp build",
"start": "node build/src/index.js",
"setup": "npm install",
"test": "gulp test",
"watch": "nodemon --watch build/src build/src/index.js"
},
"dependencies": {
"bcryptjs": "2.4.3",
"boom": "7.2.0",
"eslint": "4.19.0",
"fs": "0.0.1-security",
"good": "8.1.0",
"good-console": "7.1.0",
"good-squeeze": "5.0.2",
"hapi": "17.4.0",
"hapi-auth-jwt2": "8.1.0",
"hapi-swagger": "9.1.1",
"inert": "5.1.0",
"joi": "13.2.0",
"jsonwebtoken": "8.2.1",
"moment": "2.22.1",
"moment-timezone": "0.5.16",
"mongoose": "5.0.16",
"nconf": "0.10.0",
"nodemon": "1.17.3",
"path": "0.12.7",
"rotating-file-stream": "1.3.6",
"vision": "5.3.2"
},
"devDependencies": {
"@types/bcryptjs": "2.4.1",
"@types/boom": "7.2.0",
"@types/chai": "^4.1.2",
"@types/hapi": "17.0.11",
"@types/joi": "13.0.8",
"@types/jsonwebtoken": "7.2.6",
"@types/mocha": "^2.2.41",
"@types/mongoose": "5.0.10",
"@types/nconf": "0.0.37",
"@types/node": "9.4.7",
"@types/sinon": "^4.1.3",
"chai": "^4.1.2",
"gulp": "3.9.1",
"gulp-env": "0.4.0",
"gulp-mocha": "5.0.0",
"gulp-rimraf": "0.2.2",
"gulp-shell": "0.6.5",
"gulp-tslint": "8.1.3",
"mocha": "^5.0.0",
"node": "9.8.0",
"sinon": "4.4.6",
"tslint": "5.9.1",
"typescript": "^2.7.2"
},
"engines": {
"node": "8"
}
}