forked from microsoft/BotBuilder-Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 873 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
{
"name": "nlp-with-dispatch",
"version": "1.0.0",
"description": "Bot Builder v4 example that demonstrates how dispatch should be used E2E.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./index.js",
"watch": "nodemon ./index.js"
},
"author": "Microsoft",
"license": "MIT",
"dependencies": {
"botbuilder": "^4.0.6",
"botbuilder-ai": "^4.0.6",
"botbuilder-azure": "^4.0.6",
"botbuilder-dialogs": "^4.0.6",
"botframework-config": "^4.0.6",
"dotenv": "^6.0.0",
"restify": "^6.3.4"
},
"devDependencies": {
"nodemon": "^1.18.4",
"eslint": "^5.6.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0"
}
}