forked from OfficeDev/Microsoft-Teams-Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 929 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
33
34
35
{
"name": "bot-configuration-app",
"version": "1.0.0",
"msteams": {
"teamsAppId": null
},
"description": "This sample shows the feature of bot configuration and reconfiguration for bots in team and group chat",
"engines": {
"node": "16 || 18"
},
"author": "Microsoft",
"license": "MIT",
"main": "index.js",
"scripts": {
"dev:teamsfx": "env-cmd --silent -f .localConfigs npm run dev",
"dev": "nodemon --inspect=9239 --signal SIGINT ./index.js",
"start": "node ./index.js",
"watch": "nodemon ./index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node build.js"
},
"dependencies": {
"botbuilder": "~4.22.1",
"botbuilder-dialogs": "^4.22.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"ejs": "^3.1.6",
"express": "^4.17.1"
},
"devDependencies": {
"nodemon": "~2.0.4",
"env-cmd": "^10.1.0",
"esbuild": "^0.18.1"
}
}