-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.39 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
{
"name": "typescript-node",
"version": "1.0.0",
"description": "",
"license": "MIT",
"repository": {
"url": "https://github.com/Talento90/typescript-node.git"
},
"author": "Talento90",
"keywords": [
"typescript",
"project structure",
"gulp",
"nodejs"
],
"scripts": {
"tsc": "tsc",
"tsc-watch": "tsc -w",
"build": "gulp build",
"start": "node build/src/index.js",
"setup": "npm install & typings install",
"test": "gulp test",
"watch": "nodemon --watch build/src build/src/index.js"
},
"dependencies": {
"bcryptjs": "^2.3.0",
"boom": "^3.2.2",
"cheerio": "^0.22.0",
"crawler": "^1.0.2",
"fs": "0.0.2",
"good": "^6.6.3",
"good-console": "^5.3.2",
"hapi": "^13.5.0",
"hapi-auth-jwt2": "^7.0.1",
"hapi-goldwasher": "^1.0.4",
"hapi-swagger": "^4.3.1",
"inert": "^3.2.1",
"joi": "^8.4.2",
"jsonwebtoken": "^7.1.7",
"mongoose": "^4.6.1",
"nconf": "^0.8.4",
"path": "^0.12.7",
"vision": "^4.1.0"
},
"devDependencies": {
"@types/node": "^7.0.5",
"chai": "^3.5.0",
"gulp": "^3.9.1",
"gulp-env": "^0.4.0",
"gulp-mocha": "^2.2.0",
"gulp-rimraf": "^0.2.0",
"gulp-shell": "^0.5.2",
"gulp-tslint": "^4.3.4",
"mocha": "^3.0.0",
"nodemon": "^1.10.2",
"tslint": "^3.13.0",
"typescript": "^2.0.3"
},
"engines": {
"node": ">=4.1.1"
}
}