-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.49 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
44
45
46
47
48
49
50
51
52
53
{
"name": "ct-az-common-alert-endpoint",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "src/alert-endpoint.js",
"description": "Azure Function for an HTTP endpoint to receive Azure Monitor alerts that use the Common Alert Schema",
"scripts": {
"func": "cross-env NODE_ENV=development LOCAL_DEV=true func start",
"func:verbose": "cross-env NODE_ENV=development LOCAL_DEV=true func start --verbose",
"scratch": "cross-env NODE_ENV=development LOCAL_DEV=true node --trace-warnings ./scratch.js",
"test": "echo \"No tests yet...\""
},
"author": {
"name": "Michael Sprague",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"url": "https://github.com/CU-CommunityApps/ct-az-common-alert-endpoint/"
},
"bugs": {
"url": "https://github.com/CU-CommunityApps/ct-az-common-alert-endpoint/issues"
},
"homepage": "https://github.com/CU-CommunityApps/ct-az-common-alert-endpoint#readme",
"engines": {
"node": ">= 20.x",
"npm": ">= 9.x"
},
"dependencies": {
"@azure/functions": "4.5.0",
"@azure/storage-blob": "12.18.0",
"axios": "1.7.4",
"dayjs": "1.11.11",
"dotenv": "16.4.5",
"turndown": "7.2.0"
},
"devDependencies": {
"@biomejs/biome": "1.7.3",
"azure-functions-core-tools": "4.0.5801",
"cross-env": "7.0.3",
"cz-git": "1.9.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-git"
}
},
"volta": {
"node": "20.13.1",
"npm": "10.8.0"
}
}