-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.23 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": "msteams-bot-msgraph-azbot",
"version": "1.0.0",
"description": "A sample that uses Teams Toolkit for Visual Studio Code Basic Bot template updated with SSO and Azure Bot Service for local development",
"engines": {
"node": "16 || 18"
},
"author": "Microsoft",
"license": "MIT",
"main": "./lib/index.js",
"scripts": {
"clean": "gts clean",
"build": "tsc --build",
"dev:teamsfx": "env-cmd --silent -f .localConfigs npm run dev",
"dev": "nodemon --exec node --inspect=9239 --signal SIGINT -r ts-node/register ./index.ts",
"lint": "gts lint",
"fix": "gts fix",
"start": "node ./lib/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "nodemon --exec \"npm run start\""
},
"repository": {
"type": "git",
"url": "https://github.com"
},
"dependencies": {
"@microsoft/adaptivecards-tools": "1.3.2",
"botbuilder": "4.21.0",
"botbuilder-azure": "4.21.0",
"botbuilder-dialogs": "4.21.0",
"restify": "11.1.0"
},
"devDependencies": {
"@types/node": "18.18.8",
"@types/restify": "8.5.9",
"env-cmd": "10.1.0",
"gts": "^5.0.1",
"nodemon": "3.0.1",
"shx": "0.3.4",
"ts-node": "10.9.1",
"typescript": "5.2.2"
}
}