-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathpackage.json
46 lines (46 loc) · 1.32 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
{
"name": "msgext-productsupport-sso-ts",
"version": "1.1.0",
"description": "Microsoft Teams Toolkit message extension search sample",
"engines": {
"node": "16 || 18"
},
"author": "Microsoft",
"license": "MIT",
"main": "./lib/src/index.js",
"scripts": {
"dev:teamsfx": "env-cmd --silent -f .localConfigs npm run dev",
"dev": "nodemon --exec node --inspect=9239 --signal SIGINT -r ts-node/register ./src/index.ts",
"build": "tsc --build",
"start": "node ./lib/src/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "nodemon --exec \"npm run start\"",
"fix": "gts fix"
},
"repository": {
"type": "git",
"url": "https://github.com"
},
"dependencies": {
"@azure/identity": "4.4.1",
"@microsoft/microsoft-graph-client": "3.0.7",
"@microsoft/microsoft-graph-types": "2.40.0",
"adaptive-expressions": "4.23.0",
"adaptivecards": "3.0.4",
"adaptivecards-templating": "2.3.1",
"botbuilder": "4.23.0",
"botframework-connector": "4.23.0",
"botframework-schema": "4.22.3",
"restify": "11.1.0"
},
"devDependencies": {
"@types/node": "20.14.10",
"@types/restify": "8.5.5",
"env-cmd": "10.1.0",
"gts": "5.3.1",
"nodemon": "3.1.4",
"shx": "^0.3.3",
"ts-node": "10.4.0",
"typescript": "5.5.4"
}
}