-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
50 lines (50 loc) · 1.42 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
{
"name": "Zapp.ie-sample",
"version": "1.0.0",
"description": "Microsoft Teams Toolkit sso bot sample",
"engines": {
"node": "16 || 18"
},
"author": "Microsoft",
"license": "MIT",
"main": "./lib/src/index.js",
"scripts": {
"dev:teamsfx": "env-cmd --silent -f .localConfigs npm run dev",
"dev": "nodemon --exec node --inspect=9239 --signal SIGINT -r ts-node/register ./src/index.ts",
"build-manifest": "node build.js",
"build": "tsc --build",
"write-env": "cross-env TEAMSFX_ENV=$TEAMSFX_ENV node scripts/writeEnv.js",
"start": "node ./lib/src/index.js",
"watch": "nodemon --exec \"npm run start\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com"
},
"dependencies": {
"@azure/identity": "^4.4.1",
"@microsoft/microsoft-graph-client": "^3.0.7",
"@microsoft/teamsfx": "^2.0.0",
"botbuilder": "^4.23.1",
"botbuilder-dialogs": "^4.18.0",
"dotenv": "^16.4.5",
"dotenv-flow": "^4.1.0",
"isomorphic-fetch": "^3.0.0",
"jest": "^29.7.0",
"restify": "^10.0.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^14.0.0",
"@types/restify": "8.5.5",
"cross-env": "^7.0.3",
"env-cmd": "^10.1.0",
"nodemon": "^2.0.7",
"shx": "^0.3.3",
"ts-jest": "^29.2.4",
"ts-node": "^10.4.0",
"typescript": "^5.6.2"
}
}