-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.29 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.29 KB
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
{
"name": "qnamaker-bot-msi",
"version": "1.0.0",
"description": "Bot Builder v4 using QnA Maker service with active learning and multi-turn experience.",
"author": "Microsoft",
"license": "MIT",
"main": "index.js",
"scripts": {
"start": "node ./index.js",
"watch": "nodemon ./index.js",
"lint": "./node_modules/.bin/eslint .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/BotBuilder-Samples.git"
},
"dependencies": {
"botbuilder": "~4.20.0",
"botbuilder-ai": "~4.20.0",
"botbuilder-dialogs": "~4.20.0",
"dotenv": "^8.2.0",
"restify": "~8.6.0"
},
"devDependencies": {
"eslint": "^7.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "~2.0.4"
},
"overrides": {
"async": "3.2.2",
"axios": "0.27.2",
"@xmldom/xmldom": "0.8.4",
"jsonwebtoken": "9.0.0",
"xml2js": "0.5.0",
"fast-xml-parser": "4.2.5"
}
}