mirror of
https://github.com/blackboxprogramming/BlackRoad-Operating-System.git
synced 2026-03-17 04:57:15 -05:00
Bumps [node-fetch](https://github.com/node-fetch/node-fetch) from 2.7.0 to 3.3.2. - [Release notes](https://github.com/node-fetch/node-fetch/releases) - [Commits](https://github.com/node-fetch/node-fetch/compare/v2.7.0...v3.3.2) --- updated-dependencies: - dependency-name: node-fetch dependency-version: 3.3.2 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
31 lines
895 B
JSON
31 lines
895 B
JSON
{
|
|
"name": "blackroad-operating-system",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"main": "server.mjs",
|
|
"scripts": {
|
|
"start": "node server.mjs",
|
|
"dev": "node server.mjs",
|
|
"build": "tsc --noEmit",
|
|
"lint": "eslint . --ext .ts,.js || true",
|
|
"test": "echo \"No automated tests yet\"",
|
|
"check:health": "ts-node tools/health-check.ts",
|
|
"deploy:service": "ts-node scripts/deployService.ts",
|
|
"deploy:all": "ts-node scripts/deployAll.ts",
|
|
"health:all": "ts-node scripts/checkHealth.ts",
|
|
"health:matrix": "ts-node scripts/healthMatrix.ts",
|
|
"env:check": "ts-node scripts/checkEnv.ts",
|
|
"repair": "ts-node scripts/repair.ts"
|
|
},
|
|
"dependencies": {
|
|
"express": "^5.2.1",
|
|
"node-fetch": "^3.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^25.3.5",
|
|
"@types/node-fetch": "^2.6.11",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.6.0"
|
|
}
|
|
}
|