-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 915 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 915 Bytes
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
{
"name": "copilot-agent-api",
"version": "1.0.0",
"main": "src/app.ts",
"scripts": {
"build": "npm i && tsc --build",
"start": "npm run build && node --env-file .env ./dist/app.js",
"bundle": "npm run build && esbuild dist/index.js --bundle --platform=node --metafile=dist/meta.json --outfile=dist/bundle.js --tree-shaking=true --keep-names",
"dev": "npm run build && nodemon dist/app.js"
},
"dependencies": {
"@azure/msal-node": "^3.2.3",
"@microsoft/agents-activity": "^0.1.49",
"@microsoft/agents-copilotstudio-client": "^0.1.27",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.17.1",
"jsonwebtoken": "^9.0.2"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.13",
"@types/node": "^16.18.126",
"nodemon": "^3.1.9",
"ts-node": "^10.9.2",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.4"
}
}