forked from microsoft/BotBuilder-Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 915 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
{
"name": "basic-bot",
"version": "0.1.0",
"description": "A basic bot that demonstrates core AI capabilities",
"author": "Microsoft Bot Framework Team",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./index.js",
"watch": "nodemon ./index.js"
},
"dependencies": {
"botbuilder": "^4.0.6",
"botbuilder-ai": "^4.0.6",
"botbuilder-dialogs": "^4.0.6",
"botframework-config": "^4.0.6",
"dotenv": "^6.0.0",
"restify": "^6.3.4"
},
"devDependencies": {
"nodemon": "^1.17.3",
"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"
}
}