-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.36 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
{
"name": "beerRecommender",
"version": "1.0.0",
"description": "Recommend beers to try based on user preferences",
"author": "Microsoft Bot Builder Yeoman Generator v4.0.10",
"license": "MIT",
"main": "./lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "tsc && node ./lib/index.js",
"watch": "tsc && node ./lib/index.js"
},
"dependencies": {
"axios": "^0.18.1",
"botbuilder": "^4.0.6",
"botbuilder-ai": "^4.0.6",
"botbuilder-azure": "^4.1.3",
"botbuilder-core": "^4.0.6",
"botbuilder-dialogs": "^4.0.6",
"botframework-config": "^4.0.6",
"botframework-connector": "^4.1.3",
"botframework-schema": "^4.0.6",
"cryptiles": "^4.1.2",
"dotenv": "^6.1.0",
"event-stream": "^3.3.4",
"form-data": "^2.3.3",
"luis": "^2.5.12",
"msbot": "^4.0.7",
"restify": "^6.3.4"
},
"devDependencies": {
"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",
"nodemon": "^1.18.4",
"@types/node": "10.10.2",
"@types/restify": "7.2.4"
}
}