-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.28 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
{
"name": "teams-app-langchain",
"version": "1.0.0",
"description": "Microsoft Teams Toolkit Command and Response 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 --watch ./src --exec node --inspect=9239 --signal SIGINT -r ts-node/register ./src/index.ts",
"build": "tsc --build && shx cp -r ./src/adaptiveCards ./lib/src",
"start": "node ./lib/src/index.js",
"watch": "nodemon --watch ./src --exec \"npm run start\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com"
},
"dependencies": {
"@microsoft/teamsfx": "^2.2.0",
"@zilliz/milvus2-sdk-node": "^2.3.0",
"botbuilder": "^4.18.0",
"langchain": "^0.0.134",
"pdf-parse": "^1.1.1",
"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.4",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
}
}