forked from andreslon/teammy-bot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.7 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
44
45
46
47
48
49
50
51
52
53
{
"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'",
"prestart": "npm run build",
"start": "node ./lib/src/index.js",
"postinstall": "npm run build",
"pretest": "npm run lint && npm run build",
"test": "jasmine --config=tests/config/jasmine.json",
"watch": "nodemon --watch ./src -e ts --exec \"npm run start\""
},
"repository": {
"type": "git",
"url": "https://github.com"
},
"dependencies": {
"aws-sdk": "2.503.0",
"botbuilder": "4.4.0",
"botbuilder-dialogs": "4.5.0",
"config": "3.1.0",
"debug": "4.1.1",
"dialogflow": "0.10.2",
"dotenv": "7.0.0",
"replace": "1.1.0",
"restify": "^8.2.0"
},
"devDependencies": {
"@types/config": "0.0.34",
"@types/debug": "4.1.5",
"@types/dialogflow": "0.9.4",
"@types/dotenv": "6.1.0",
"@types/jasmine": "3.3.16",
"@types/node": "12.6.3",
"@types/restify": "7.2.9",
"@types/superagent": "4.1.3",
"jasmine": "3.4.0",
"jasmine-spec-reporter": "4.2.1",
"nodemon": "1.18.10",
"readline-sync": "1.4.9",
"superagent": "5.1.0",
"tslint": "5.14.0",
"tslint-config-airbnb": "5.11.1",
"typescript": "3.3.3"
}
}