-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.64 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
{
"name": "ServiceDeskSampleBot",
"version": "1.0.0",
"description": "Sample Service Desk Bot",
"author": "Generated using Microsoft Bot Builder Yeoman generator v4.2.4",
"license": "MIT",
"main": "./lib/index.js",
"scripts": {
"build": "node_modules/.bin/tsc --build",
"lint": "node_modules/.bin/tslint -c tslint.json 'src/**/*.ts'",
"postinstall": "npm run build && node ./deploymentScripts/webConfigPrep.js",
"start": "node_modules/.bin/tsc --build && node ./lib/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "node_modules/.bin/nodemon --watch ./src -e ts --exec \"npm run start\""
},
"repository": {
"type": "git",
"url": "https://github.com"
},
"dependencies": {
"@microsoft/microsoft-graph-client": "^1.4.0",
"@types/dateformat": "^3.0.0",
"@types/randomstring": "^1.1.6",
"@types/request-promise": "^4.1.42",
"botbuilder": "^4.2.0",
"botbuilder-ai": "^4.2.0",
"botbuilder-applicationinsights": "^4.2.1",
"botbuilder-azure": "^4.2.1",
"botbuilder-dialogs": "^4.2.0",
"botframework-config": "^4.2.0",
"dateformat": "^3.0.3",
"dotenv": "^6.1.0",
"randomstring": "^1.1.5",
"replace": "^1.0.0",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"restify": "^7.2.3",
"typescript-logging": "^0.6.3"
},
"devDependencies": {
"@types/dotenv": "6.1.0",
"@types/restify": "7.2.6",
"nodemon": "^1.18.7",
"tslint": "^5.11.0",
"typescript": "^3.1.6"
}
}