-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.17 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
{
"name": "scream-caller-bot",
"version": "1.0.0",
"description": "A bot to automate the Scream movie caller",
"author": "Linda Nichols <[email protected]>",
"license": "MIT",
"main": "index.js",
"scripts": {
"start": "node ./index.js",
"watch": "nodemon ./index.js",
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/lynnaloo/scream-caller-bot"
},
"dependencies": {
"applicationinsights": "^2.3.1",
"botbuilder": "~4.16.0",
"botbuilder-ai": "^4.16.0",
"botbuilder-applicationinsights": "^4.16.0",
"botbuilder-core": "^4.16.0",
"dotenv": "^16.0.0",
"restify": "~8.6.1"
},
"devDependencies": {
"eslint": "^7.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-shopify": "^35.1.0",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "~2.0.4"
}
}