-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.19 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
{
"name": "teams-ai-message-extension-sso",
"version": "1.0.0",
"description": "Microsoft Teams Toolkit m365 message extension sample",
"engines": {
"node": "16 || 18"
},
"author": "Microsoft",
"license": "MIT",
"main": "./lib/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 ./index.ts",
"build": "tsc --build",
"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/teams-ai": "0.1.0-preview.2",
"@microsoft/teamsfx": "^2.2.2",
"botbuilder": "^4.18.0",
"isomorphic-fetch": "^3.0.0",
"restify": "^10.0.0"
},
"devDependencies": {
"@types/restify": "^8.5.5",
"@types/node": "^14.0.0",
"env-cmd": "^10.1.0",
"ts-node": "^10.4.0",
"typescript": "^4.4.4",
"nodemon": "^2.0.7",
"shx": "^0.3.3"
}
}