-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
117 lines (117 loc) · 3.68 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "teams-copilot-starter",
"version": "1.0.0",
"description": "A starter template for building a conversational Gen AI Teams bots using the Teams AI Library",
"engines": {
"node": "16 || 18"
},
"author": "Microsoft",
"license": "MIT",
"keywords": [
"gpt",
"teams",
"bot",
"ai",
"microsoft",
"teams ai"
],
"bugs": {
"url": "https://github.com/microsoft/teams-copilot-starter/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/teams-copilot-starter.git"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build:rollup": "yarn clean && yarn build",
"dev:teamsfx": "env-cmd --silent -f ./src/.localConfigs yarn dev",
"dev:teamsfx:testtool": "env-cmd --silent -f ./src/.localConfigs.testTool yarn 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/adaptiveCards/templates ./lib/ && shx cp -r ./src/prompts ./lib/ && shx cp -r ./src/public ./lib/",
"start": "node ./lib/index.js",
"watch": "nodemon --exec \"yarn start\"",
"clean": "rimraf lib tsconfig.tsbuildinfo node_modules",
"lint": "eslint **/src/**/*.{j,t}s{,x} --fix --no-error-on-unmatched-pattern",
"test": "jest --bail",
"test:relevant": "jest --bail --findRelatedTests src/bot/teamsAI.ts --passWithNoTests",
"prepare": "husky"
},
"nodemonConfig": {
"ignore": [
"index/*"
]
},
"dependencies": {
"@azure/app-configuration": "^1.6.0",
"@azure/search-documents": "^12.0.0",
"@microsoft/microsoft-graph-client": "^3.0.1",
"@microsoft/teams-ai": "~1.3.1",
"@microsoft/teamsfx": "^2.0.0",
"adaptive-expressions": "^4.20.0",
"adaptivecards": "^2.11.3",
"adaptivecards-templating": "^2.3.1",
"applicationinsights": "^2.9.3",
"axios": "^1.6.8",
"botbuilder": "^4.22.2",
"botbuilder-azure-blobs": "^4.22.2",
"botbuilder-dialogs": "^4.22.2",
"cockatiel": "^3.1.2",
"isomorphic-fetch": "^3.0.0",
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^3.1.0",
"mime": "^4.0.1",
"mime-types": "^2.1.35",
"openai": "4.28.4",
"pdf-ts": "^0.0.2",
"querystring": "^0.2.1",
"reflect-metadata": "^0.2.2",
"restify": "^10.0.0",
"tsyringe": "^4.8.0",
"uuid": "^9.0.1",
"vectra": "^0.6.0",
"winston": "^3.9.0",
"zod": "^3.22.4"
},
"resolutions": {
"follow-redirects": "^1.15.0"
},
"devDependencies": {
"@microsoft/teamsfx-cli": "2.*",
"@nrwl/eslint-plugin-nx": "^18.2.2",
"@nrwl/nx": "^7.8.7",
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.12",
"@types/json-schema": "^7.0.12",
"@types/jsonwebtoken": "^9.0.4",
"@types/mime-types": "^2.1.4",
"@types/node": "^20.12.12",
"@types/passport": "^1.0.16",
"@types/passport-azure-ad": "^4.3.6",
"@types/reflect-metadata": "^0.1.0",
"@types/restify": "8.5.5",
"@types/tedious": "^4.0.9",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"env-cmd": "^10.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^46.2.6",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-security": "^1.7.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"nodemon": "^2.0.7",
"pinst": "^3.0.0",
"prettier": "^2.8.8",
"shx": "^0.3.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.4.0",
"typescript": "^5.4.3"
}
}