-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.08 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.08 KB
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
{
"name": "burger-api",
"version": "1.0.0",
"description": "Azure Functions API for Contoso Burgers",
"private": true,
"main": "./dist/src/{tracing.js,functions/*.js}",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"clean": "rimraf dist",
"prestart": "npm run clean && npm run update:local-settings",
"start:storage": "azurite --silent --location ./.azurite --debug ./.azurite/debug.log",
"start:host": "func start",
"start": "concurrently npm:start:* npm:watch --raw --kill-others",
"update:local-settings": "node ./scripts/update-local-settings.mjs"
},
"author": "Microsoft",
"license": "MIT",
"template": "functions",
"dependencies": {
"@azure/cosmos": "^4.3.0",
"@azure/functions": "^4.7.0",
"@azure/identity": "^4.8.0",
"@azure/monitor-opentelemetry": "^1.14.0",
"@azure/storage-blob": "^12.27.0",
"js-yaml": "^4.1.1"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22",
"azure-functions-core-tools": "^4",
"azurite": "^3",
"dotenv": "^17.0.0",
"typescript": "^6"
}
}