-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.22 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 3.22 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "azure-function-app-nodejs-starter",
"version": "1.2.0",
"private": true,
"description": "Azure Function App starter template",
"bugs": {
"url": "https://github.com/cu-cit-cloud-team/azure-function-app-nodejs-starter/issues"
},
"author": {
"name": "Michael Sprague",
"email": "ms388@cornell.edu"
},
"repository": {
"url": "https://github.com/cu-cit-cloud-team/azure-function-app-nodejs-starter"
},
"type": "module",
"main": "dist/src/**/*.js",
"scripts": {
"azurite": "docker run -p 10000:10000 -p 10001:10001 -p 10002:10002 mcr.microsoft.com/azure-storage/azurite",
"build": "npx tsc",
"build:watch": "npx tsc --watch",
"changelog": "npx conventional-changelog -p conventionalcommits -n changelog.config.mjs -i CHANGELOG.md -s && git add CHANGELOG.md",
"changelog:preview": "npx conventional-changelog -p conventionalcommits -n changelog.config.mjs -u --stdout -i /dev/null",
"clean": "npx rimraf dist",
"declarations": "npx rimraf types/ && npx tsc --emitDeclarationOnly",
"functions": "cross-env NODE_ENV=development func start",
"functions:verbose": "cross-env NODE_ENV=development func start --verbose",
"format": "npx oxfmt src",
"format:check": "npx oxfmt --check src",
"lint": "npm run oxlint && npm run typecheck",
"oxlint": "npx oxlint src",
"prebuild": "npm run clean",
"prebuild:watch": "npm run clean",
"prefunctions": "npm run clean && npm run build",
"prefunctions:verbose": "npm run clean && npm run build",
"scratch": "cross-env NODE_ENV=development LOCAL_DEV=true npx tsx --env-file=.env --trace-warnings src/scratch.ts",
"test": "npm run lint && npm run vitest:coverage -- --silent",
"typecheck": "npx tsc --noEmit",
"typecheck:watch": "npx tsc --noEmit --watch",
"typedoc": "npx typedoc --out docs --entryPointStrategy expand ./src --excludeInternal false --excludeNotDocumented false --plugin typedoc-plugin-markdown --readme none",
"typedoc-html": "npx typedoc --out docs/docs --entryPointStrategy expand ./src --excludeInternal false --excludeNotDocumented false --readme none",
"version": "npm run changelog",
"vitest": "npx vitest run",
"vitest:watch": "npx vitest run --watch",
"vitest:coverage": "npx vitest run --coverage"
},
"dependencies": {
"@azure/functions": "4.16.2",
"dotenv": "17.4.2"
},
"devDependencies": {
"@types/node": "26.4.0",
"@vitest/coverage-v8": "4.1.11",
"azure-functions-core-tools": "4.14.0",
"conventional-changelog": "8.1.3",
"conventional-changelog-conventionalcommits": "10.4.0",
"cross-env": "10.1.0",
"cz-git": "1.14.0",
"oxfmt": "0.66.0",
"oxlint": "1.80.0",
"rimraf": "6.1.3",
"tsx": "4.23.13",
"typedoc": "0.28.20",
"typedoc-plugin-markdown": "4.13.0",
"typescript": "6.0.3",
"vitest": "4.1.11"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-git"
}
},
"release": {
"preset": "conventionalcommits"
},
"engines": {
"node": ">= 24.x",
"npm": ">= 11.x"
},
"volta": {
"node": "24.18.0",
"npm": "12.0.1"
},
"packageManager": "npm@12.0.1",
"allowScripts": {
"azure-functions-core-tools@4.12.1": true,
"esbuild@0.28.1": true
}
}