-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.34 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": "teammy-bot",
"version": "1.0.0",
"description": "Q&A bot for Team International Latam",
"author": "Generated using Microsoft Bot Builder Yeoman generator v4.4.0",
"license": "MIT",
"main": "./lib/index.js",
"scripts": {
"credentialgen": "node ./scripts/google.json.generator.js",
"prebuild": "npm run credentialgen",
"build": "tsc --build",
"lint": "tslint -c tslint.json 'src/**/*.ts' --fix",
"prestart": "npm run build",
"start": "node ./lib/index.js",
"postinstall": "npm run build",
"test": "npm run build",
"watch": "nodemon --watch ./src -e ts --exec \"npm run start\""
},
"repository": {
"type": "git",
"url": "https://github.com"
},
"dependencies": {
"botbuilder": "~4.4.0",
"botbuilder-dialogs": "^4.5.0",
"config": "^3.1.0",
"dialogflow": "^0.10.2",
"dotenv": "^7.0.0",
"replace": "~1.1.0",
"restify": "~8.2.0"
},
"devDependencies": {
"@types/config": "0.0.34",
"@types/dialogflow": "^0.9.4",
"@types/dotenv": "6.1.0",
"@types/node": "^12.6.3",
"@types/restify": "7.2.9",
"nodemon": "~1.18.10",
"tslint": "~5.14.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "~3.3.3"
}
}