-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·65 lines (65 loc) · 2.35 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
{
"name": "wch-conversation-server",
"version": "1.1.0",
"private": false,
"license": "Apache-2.0",
"scripts": {
"start": "node bin/www",
"dev": "gulp dev",
"devDebug": "export DEBUG_COLORS=true&&export DEBUG=wchbotserver:*,conversation-core:*,-wchbotserver:templating&& gulp dev",
"test": "mocha",
"eslint": "gulp eslint",
"manageCreds": "chatcreds manage -A",
"manageChannels": "chatcreds manage -C",
"manageServices": "chatcreds manage -S",
"pushWCH": "chatcreds push --wch",
"pushWCS": "chatcreds push --wcs",
"sync": "chatcreds sync",
"bxGeoAdd": "bx cf cups geo_config -p \"key\"",
"bxGeoUpdate": "bx cf uups geo_config -p \"key\"",
"bxWCHAdd": "bx cf cups wch_config -p \"hubid, username, password, apiurl\"",
"bxWCHUpdate": "bx cf uups wch_config -p \"hubid, username, password, apiurl\"",
"bxSlackAdd": "bx cf cups slack_config -p \"clientid, clientsecret, verificationtoken, redirectUri\"",
"bxSlackUpdate": "bx cf uups slack_config -p \"clientid, clientsecret, verificationtoken, redirectUri\"",
"bxFBAdd": "bx cf cups fb_config -p \"key, verificationtoken\"",
"bxFBUpdate": "bx cf uups fb_config -p \"key, verificationtoken\"",
"bxAlexaAdd": "bx cf cups alexa_config -p \"appid\"",
"bxAlexaUpdate": "bx cf uups alexa_config -p \"appid\"",
"bxDBAdd": "bx cf cups db_config -p \"mongoUri\"",
"bxDBUpdate": "bx cf uups db_config -p \"mongoUri\"",
"dockerbuild": "docker build -t wchconversation .",
"dockerun": "docker run -p 6001:6001 wchconversation"
},
"dependencies": {
"@google/maps": "^0.5.5",
"architect": "^0.1.13",
"body-parser": "^1.18.3",
"botkit": "^0.7.0",
"botkit-middleware-watson": "^1.8.1",
"botkit-storage-mongo": "^1.0.6",
"cfenv": "^1.1.0",
"debug": "^2.6.8",
"express": "^4.16.3",
"handlebars": "^4.0.8",
"node-cache": "^4.2.0",
"sample-wch-node-connector": "^0.7.8",
"watson-developer-cloud": "^4.0.0",
"wch-conversation-core": "^0.7.13"
},
"devDependencies": {
"eslint": "^4.19.1",
"gulp": "^4.0.0",
"gulp-eslint": "^5.0.0",
"gulp-if": "^2.0.2",
"gulp-nodemon": "^2.4.2",
"mocha": "^5.2.0",
"prompt": "^1.0.0",
"should": "^11.1.1"
},
"repository": {
"git": "https://github.com/ibm-wch/sample-wch-conversation-server"
},
"engines": {
"node": "8.x"
}
}