-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.03 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
51
52
53
54
55
56
57
58
59
60
{
"name": "Polichat",
"version": "1.0.0",
"description": "Chatbot for HR queries",
"author": "PSW",
"license": "MIT",
"main": "./lib/index.js",
"scripts": {
"docs": "typedoc",
"dev:teamsfx": "npm run dev",
"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 \"npm start\""
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/teams-ai"
},
"dependencies": {
"@microsoft/teams-ai": "~1.2.1",
"@microsoft/teams-js": "^2.23.0",
"@microsoft/teamsfx": "^2.3.2",
"@pinecone-database/pinecone": "^2.2.2",
"@sinclair/typebox": "^0.32.35",
"async-lock": "^1.4.1",
"botbuilder": "^4.22.2",
"dotenv": "^16.4.5",
"esdoc-standard-plugin": "^1.0.0",
"jsdoc-tsimport-plugin": "^1.0.5",
"openai": "^4.28.4",
"pinecone": "^0.1.0",
"replace": "~1.2.0",
"restify": "~11.1.0",
"vectra": "^0.7.6"
},
"devDependencies": {
"@compodoc/compodoc": "^1.1.25",
"@types/async-lock": "^1.4.2",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.14.13",
"@types/restify": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"better-docs": "^2.7.3",
"eslint": "^8.57.0",
"jsdoc": "^4.0.3",
"jsdoc-ts-utils": "^5.0.0",
"nodemon": "~3.0.1",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"ts-node": "^10.9.2",
"typedoc": "^0.26.5",
"typedoc-plugin-markdown": "^4.2.3",
"typescript": "^5.5.4"
}
}