-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
43 lines (43 loc) · 1.42 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": "coreplus",
"version": "1.0.0",
"description": "Demonstrate the core capabilities of the Microsoft Bot Framework",
"author": "Seed version (core) generated using Microsoft Bot Builder Yeoman generator v4.2.6. Extended by Rubén Hinojosa Chapel.",
"license": "MIT",
"main": "index.js",
"scripts": {
"start": "node ./src/index.js",
"watch": "nodemon ./src/index.js",
"lint": "./node_modules/.bin/eslint .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/hinojosachapel/CorePlus"
},
"engines": {
"node": "=14.16.0"
},
"dependencies": {
"adaptivecards-templating": "^0.1.1-alpha.1",
"botbuilder": "^4.13.4",
"botbuilder-ai": "^4.13.4",
"botbuilder-azure": "^4.13.4",
"botbuilder-core": "^4.13.4",
"botbuilder-dialogs": "^4.13.4",
"botframework-config": "^4.11.1",
"botframework-connector": "^4.13.4",
"botframework-schema": "^4.13.4",
"i18n": "^0.8.6",
"restify": "^8.5.1"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"nodemon": "^2.0.7"
}
}