-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.74 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
47
48
49
50
{
"name": "teams-azureopenai-build-demo",
"version": "1.0.0",
"description": "Sample bot demonstrating using Azure AI Search for RAG.",
"author": "Microsoft",
"license": "MIT",
"main": "./lib/index.js",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev:teamsfx": "env-cmd --silent -f .env npm run dev",
"dev:teamsfx:testtool": "env-cmd --silent -f .env npm run dev",
"dev:teamsfx:launch-testtool": "env-cmd --silent -f env/.env.testtool teamsapptester start",
"dev": "nodemon --watch ./src --exec node --inspect=9239 --signal SIGINT -r ts-node/register ./src/index.ts",
"build": "tsc --build",
"clean": "rimraf node_modules lib",
"lint": "eslint **/src/**/*.{j,t}s{,x} --fix --no-error-on-unmatched-pattern",
"start": "tsc --build && node ./lib/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "nodemon --watch ./src -e ts --exec \"yarn start\""
},
"repository": {
"type": "git",
"url": "https://github.com"
},
"dependencies": {
"@azure/search-documents": "12.0.0",
"@microsoft/teams-ai": "~1.1.3",
"@microsoft/teamsfx": "^2.3.0",
"@types/debug": "^4.1.12",
"@types/jsonwebtoken": "^8.5.0",
"botbuilder": "^4.22.1",
"debug": "^4.3.4",
"dotenv": "^16.4.1",
"replace": "~1.2.0",
"restify": "~11.1.0",
"vectra": "^0.6.0"
},
"devDependencies": {
"@types/dotenv": "6.1.1",
"@types/node": "^20.12.2",
"@types/restify": "8.5.12",
"env-cmd": "^10.1.0",
"nodemon": "~1.19.4",
"rimraf": "^3.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}