forked from aycabas/ClippyforTeams
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 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
38
{
"name": "ClippyforTeams",
"version": "1.0.0",
"description": "Microsoft Teams Toolkit hello world Bot 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 && shx cp -r ./adaptiveCards ./lib/",
"start": "node ./lib/index.js",
"watch": "nodemon --exec \"npm run start\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com"
},
"dependencies": {
"@microsoft/adaptivecards-tools": "^1.0.0",
"@microsoft/teams-ai": "^0.1.0-preview.2",
"botbuilder": "^4.17.0",
"restify": "^10.0.0"
},
"devDependencies": {
"@types/node": "^14.0.0",
"@types/restify": "^8.5.5",
"env-cmd": "^10.1.0",
"nodemon": "^2.0.7",
"shx": "^0.3.3",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
}
}