-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.56 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": "careergeniecustomagent",
"version": "1.0.0",
"msteams": {
"teamsAppId": null
},
"description": "Microsoft Teams Toolkit AI Chat Bot Sample with Teams AI Library",
"engines": {
"node": "18 || 20"
},
"author": "Microsoft",
"license": "MIT",
"main": "./lib/src/index.js",
"scripts": {
"dev:teamsfx": "env-cmd --silent -f .localConfigs npm run dev",
"dev:teamsfx:testtool": "env-cmd --silent -f .localConfigs.testTool npm run dev",
"dev:teamsfx:launch-testtool": "env-cmd --silent -f env/.env.testtool teamsapptester start",
"dev": "nodemon --exec node --inspect=9239 --signal SIGINT -r ts-node/register ./src/index.ts",
"build": "tsc --build && shx cp -r ./src/prompts ./lib/src",
"start": "node ./lib/src/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/microsoft-graph-client": "^3.0.7",
"@microsoft/microsoft-graph-types": "^2.40.0",
"@microsoft/teams-ai": "^1.5.3",
"botbuilder": "^4.23.1",
"express": "^5.0.1",
"fs": "^0.0.1-security",
"restify": "^10.0.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^18.0.0",
"env-cmd": "^10.1.0",
"nodemon": "^3.1.7",
"shx": "^0.3.3",
"ts-node": "^10.4.0",
"typescript": "^5.5.4"
}
}