-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·57 lines (57 loc) · 1.83 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
{
"name": "complex-dialog-bot",
"version": "1.0.0",
"description": "Sample code for the how to topic for creating advanced conversation flow",
"author": "Microsoft",
"license": "MIT",
"main": "index.js",
"scripts": {
"lint": "eslint ./src/**/*",
"test": "jest",
"build": "rimraf ./dist && tsc -p ./tsconfig.json",
"start": "node ./dist/main.js",
"dev": "ts-node-dev --respawn --transpile-only ./src/botframework/main.ts"
},
"dependencies": {
"amqplib": "^0.10.3",
"axios": "^1.6.0",
"botbuilder": "~4.20.0",
"botbuilder-dialogs": "~4.20.0",
"botbuilder-storage-mongodb": "^1.0.17",
"botbuilder-testing": "^4.20.1",
"dotenv": "^8.6.0",
"fast-json-stringify": "^5.8.0",
"langchain": "^0.0.175",
"mongodb": "^5.7.0",
"pino": "^8.16.1",
"pino-abstract-transport": "^1.1.0",
"restify": "~10.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@swc/core": "^1.3.78",
"@swc/helpers": "^0.5.1",
"@types/amqplib": "^0.10.4",
"@types/jest": "^29.5.6",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.4.10",
"@types/restify": "^8.5.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"eslint": "^8.47.0",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"regenerator-runtime": "^0.14.0",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=16.0.0 <17.0.0"
}
}