-
Notifications
You must be signed in to change notification settings - Fork 808
/
Copy pathpackage.json
35 lines (35 loc) · 1.13 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
{
"name": "rtsampleapp",
"version": "1.0.0",
"description": "Microsoft 365 RT Sample App Feature",
"engines": {
"node": "16 || 18"
},
"author": "Microsoft",
"license": "MIT",
"main": "./src/index.js",
"scripts": {
"dev:teamsfx": "env-cmd --silent -f .localConfigs npm run dev",
"dev:teamsfx:testtool": "env-cmd --silent -f .localConfigs.testTool npm run dev",
"dev:teamsfx:launch-testtool": "env-cmd --silent -f env/.env.testtool teamsapptester start",
"dev": "nodemon --exec node --inspect=9239 --signal SIGINT ./src/index.js",
"start": "node ./src/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "nodemon --exec \"npm run start\""
},
"repository": {
"type": "git",
"url": "https://github.com"
},
"dependencies": {
"adaptive-expressions": "^4.20.0",
"adaptivecards-templating": "^2.3.1",
"adaptivecards": "^3.0.1",
"botbuilder": "^4.20.0",
"restify": "^10.0.0"
},
"devDependencies": {
"env-cmd": "^10.1.0",
"nodemon": "^2.0.7"
}
}