forked from OfficeDev/Microsoft-Teams-Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 886 Bytes
/
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
{
"name": "expert-finder-js",
"version": "1.0.0",
"msteams": {
"teamsAppId": null
},
"description": "Microsoft Teams message extension that can be used as a plugin to Search for candidates and share profiles matching a criteria.",
"engines": {
"node": "16 || 18"
},
"author": "Microsoft",
"license": "MIT",
"main": "./src/index.js",
"scripts": {
"dev:teamsfx": "env-cmd --silent -f .localConfigs npm run dev",
"dev": "nodemon --inspect=9239 --signal SIGINT ./src/index.js",
"start": "node ./src/index.js",
"watch": "nodemon ./src/index.js"
},
"dependencies": {
"@microsoft/adaptivecards-tools": "^1.3.3",
"adaptivecards": "^3.0.4",
"azure-storage": "^2.10.7",
"botbuilder": "^4.22.2",
"esbuild": "^0.21.5",
"restify": "^10.0.0"
},
"devDependencies": {
"env-cmd": "^10.1.0",
"nodemon": "^2.0.7"
}
}