mirror of
https://github.com/blackboxprogramming/BlackRoad-Operating-System.git
synced 2026-03-16 23:57:10 -05:00
31 lines
897 B
JSON
31 lines
897 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": "^4.21.0",
|
|
"node-fetch": "^2.6.7"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.12.7",
|
|
"@types/node-fetch": "^2.6.11",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.6.0"
|
|
}
|
|
}
|