forked from bruckmann/botkit-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.03 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
{
"name": "botkit-template",
"version": "1.0.1",
"description": "This project implements a Botkit + Webex Teams adapter bot, based on the [generator-botkit](https://www.npmjs.com/package/generator-botkit) Yoeman template, providing a few extra good-practice features, plus several interesting samples:",
"main": "bot.js",
"dependencies": {
"axios": "^0.19.2",
"botbuilder-adapter-webex": "^1.0.9",
"botbuilder-storage-mongodb": "^1.0.4",
"botbuilder-storage-redis": "^1.0.10",
"botkit": "^4.10.0",
"dotenv": "^8.2.0",
"redis": "^3.0.2",
"uuid": "^8.3.0"
},
"devDependencies": {},
"scripts": {
"start": "node bot.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CiscoDevNet/botkit-template.git"
},
"author": "dstaudt@cisco.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/CiscoDevNet/botkit-template/issues"
},
"homepage": "https://github.com/CiscoDevNet/botkit-template#readme"
}