-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathpackage.json
43 lines (43 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
{
"name": "northwindproducts",
"version": "1.1.0",
"description": "Microsoft Teams Toolkit message extension search 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 --ignore _storage_emulator/ --signal SIGINT -r ts-node/register ./src/index.ts",
"build": "tsc --build",
"start": "node ./lib/src/index.js",
"storage": "azurite --silent --location ./_storage_emulator --debug ./_storage_emulator/debug.log",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "nodemon --exec \"npm run start\""
},
"repository": {
"type": "git",
"url": "https://github.com"
},
"dependencies": {
"@azure/data-tables": "13.2.2",
"@microsoft/adaptivecards-tools": "1.3.4",
"adaptive-expressions": "4.23.0",
"adaptivecards": "3.0.4",
"adaptivecards-templating": "2.3.1",
"botbuilder": "4.23.0",
"restify": "11.1.0"
},
"devDependencies": {
"@types/node": "18.19.47",
"@types/restify": "8.5.12",
"azurite": "3.32.0",
"env-cmd": "10.1.0",
"nodemon": "3.1.4",
"shx": "^0.3.3",
"ts-node": "10.9.2",
"typescript": "5.5.4"
}
}