-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathpackage.json
31 lines (31 loc) · 1.09 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
{
"name": "treyresearch",
"version": "1.0.0",
"scripts": {
"dev:teamsfx": "env-cmd --silent -f .localConfigs npm run dev",
"dev": "func start --typescript --language-worker=\"--inspect=9229\" --port \"7071\" --cors \"*\"",
"build": "tsc",
"watch:teamsfx": "tsc --watch",
"watch": "tsc -w",
"prestart": "npm run build",
"start": "npx func start",
"test": "echo \"Error: no test specified\" && exit 1",
"reset-local-db": "node ./scripts/db-setup.js UseDevelopmentStorage=true --reset",
"storage": "azurite --silent --location ./_storage_emulator --debug ./_storage_emulator/debug.log"
},
"dependencies": {
"@azure/functions": "^4.3.0",
"@azure/data-tables": "^13.2.2",
"azurite": "^3.26.0",
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^3.1.0",
"lru-memoizer": "^2.3.0"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/node": "^20.14.9",
"env-cmd": "^10.1.0",
"typescript": "^4.1.6"
},
"main": "dist/src/functions/*.js"
}