mirror of
https://github.com/blackboxprogramming/BlackRoad-Operating-System.git
synced 2026-03-17 09:37:55 -05:00
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 25.3.5 to 25.4.0. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) --- updated-dependencies: - dependency-name: "@types/node" dependency-version: 25.4.0 dependency-type: direct:development update-type: version-update:semver-minor ... 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.4.0",
|
|
"@types/node-fetch": "^2.6.11",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.6.0"
|
|
}
|
|
}
|