-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1001 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 1001 Bytes
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
{
"name": "treyresearchauth",
"version": "1.1.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/data-tables": "^13.3.1",
"@azure/functions": "^4.7.3",
"azurite": "^3.12.0",
"jwt-validate": "^0.5.0"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.19.1",
"env-cmd": "^10.1.0",
"semver": "^7.7.2",
"typescript": "^5.8.3"
},
"main": "dist/src/functions/*.js"
}