-
Notifications
You must be signed in to change notification settings - Fork 136
/
Copy pathpackage.json
69 lines (69 loc) · 1.86 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
{
"name": "movie-assistant",
"version": "0.1.1",
"description": "A sample nodejs app for Bluemix that shows how to combine Natural Language Classifier with Dialog",
"repository": {
"type": "git",
"url": "https://github.com/watson-developer-cloud/movie-assistant-nodejs.git"
},
"author": "IBM Corp.",
"contributors": [
{
"name": "German Attanasio Ruiz",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/watson-developer-cloud/movie-assistant-nodejs/issues"
},
"scripts": {
"start": "node ./training/setup.js && node app.js",
"postinstall": "gulp build",
"train": "node ./training/setup.js"
},
"engines": {
"node": "4.2.1"
},
"dependencies": {
"body-parser": "^1.13.2",
"errorhandler": "^1.4.1",
"express": "^4.12.2",
"express-rate-limit": "^2.1.0",
"express-secure-only": "^0.2.1",
"gulp-nodemon": "^2.0.6",
"helmet": "^1.1.0",
"moment": "^2.11.1",
"q": "^1.4.1",
"request": "^2.69.0",
"trim": "0.0.1",
"watson-developer-cloud": "^1.2.0"
},
"devDependencies": {
"bower": "^1.5.3",
"browser-sync": "^2.11.1",
"del": "^2.2.0",
"gulp": "^3.8.10",
"gulp-angular-gettext": "^2.1.0",
"gulp-angular-templatecache": "^1.4.2",
"gulp-autoprefixer": "^3.1.0",
"gulp-beautify": "^2.0.0",
"gulp-bower": "0.0.13",
"gulp-cache": "^0.4.2",
"gulp-debug": "^2.1.2",
"gulp-env": "^0.4.0",
"gulp-if": "^2.0.0",
"gulp-load-plugins": "^1.2.0",
"gulp-minify-css": "^1.2.3",
"gulp-minify-html": "^0.1.5",
"gulp-ng-annotate": "^1.1.0",
"gulp-preprocess": "^2.0.0",
"gulp-prettify": "^0.4.0",
"gulp-sequence": "^0.4.4",
"gulp-size": "^2.0.0",
"gulp-uglify": "^1.0.1",
"gulp-useref": "^1.3.0",
"gulp-util": "^3.0.1",
"run-sequence": "^1.1.5"
}
}