-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 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
54
{
"name": "BotCaptain",
"version": "1.0.0",
"description": "Mediate the professor-student relationship in a hybrid classroom",
"author": "Microsoft Bot Builder Yeoman Generator v4.0.10",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "node node_modules/mocha/bin/_mocha test/",
"serve": "nodemon server.js",
"build": "echo \"Error: no build specified\" && exit 1",
"start": "node ./index.js",
"watch": "nodemon ./index.js"
},
"dependencies": {
"@microsoft/recognizers-text-suite": "^1.1.4",
"axios": "^0.21.1",
"botbuilder": "^4.3.4",
"botbuilder-dialogs": "^4.3.4",
"botframework-config": "^4.0.6",
"bunyan": "^1.8.12",
"cassandra-driver": "^4.6.0",
"crypto": "^1.0.1",
"dotenv": "^6.0.0",
"email-validator": "^2.0.4",
"es6-module-loader": "^0.17.11",
"express": "^4.16.4",
"jsonfile": "^5.0.0",
"mime": "^2.4.0",
"node-schedule": "^1.3.2",
"nodemailer": "^6.6.3",
"prompt": "^1.0.0",
"queue": "^6.0.1",
"restify": "^8.5.1",
"rwlock": "^5.0.0",
"stream": "0.0.2",
"tincanjs": "^0.50.0",
"yarn": "^1.13.0"
},
"devDependencies": {
"@types/node": "10.12.12",
"@types/restify": "7.2.6",
"bot-tester": "^3.4.5",
"chai": "^4.2.0",
"eslint": "^5.6.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^5.2.0",
"nodemon": "^2.0.12"
}
}