-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 957 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
32
33
34
35
36
37
38
39
{
"name": "foodbot",
"version": "0.1.0",
"description": "A great conversation bot about foods recomendation.",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "node ./build/app.js",
"prestart": "tsc"
},
"keywords": [
"bot",
"food"
],
"author": "Rogerio Fernandes",
"license": "MIT",
"dependencies": {
"@sheerun/botbuilder-azure": "^3.0.5",
"@types/bunyan": "^1.8.4",
"@types/mocha": "^2.2.48",
"@types/node": "^9.4.7",
"@types/request": "^2.47.0",
"@types/restify": "^5.0.7",
"botbuilder": "^3.14.0",
"botbuilder-azure": "^3.0.4",
"botbuilder-cognitiveservices": "^1.1.0",
"bunyan": "^1.8.12",
"mocha": "^5.0.4",
"querystring": "^0.2.0",
"request": "^2.85.0",
"restify": "^6.3.4",
"ts-node": "^5.0.1",
"typescript": "^2.7.2"
},
"devDependencies": {
"tslint": "^5.9.1"
}
}