-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.3 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
{
"name": "ct-azure-function-app-nodejs-starter",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "src/**.js",
"description": "Azure Function App starter template",
"scripts": {
"functions": "cross-env NODE_ENV=development func start",
"functions:verbose": "cross-env NODE_ENV=development func start --verbose",
"test": "echo \"No tests yet...\"",
"version": "npm run changelog"
},
"author": {
"name": "Michael Sprague",
"email": "[email protected]"
},
"repository": {
"url": "https://github.com/CU-CommunityApps/ct-azure-function-app-nodejs-starter"
},
"bugs": {
"url": "https://github.com/CU-CommunityApps/ct-azure-function-app-nodejs-starter/issues"
},
"engines": {
"node": ">= 20.x",
"npm": ">= 9.x"
},
"dependencies": {
"@azure/functions": "4.6.0",
"axios": "1.7.9",
"dotenv": "16.4.7"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"azure-functions-core-tools": "4.0.6610",
"conventional-changelog": "6.0.0",
"conventional-changelog-cli": "5.0.0",
"conventional-changelog-conventionalcommits": "8.0.0",
"cross-env": "7.0.3",
"cz-git": "1.11.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-git"
}
},
"release": {
"preset": "conventionalcommits"
}
}