mirror of
https://github.com/blackboxprogramming/BlackRoad-Operating-System.git
synced 2026-03-19 15:21:08 -05:00
28 lines
758 B
JSON
28 lines
758 B
JSON
{
|
|
"name": "blackroad-operating-system",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"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 --esm tools/health-check.ts",
|
|
"deploy:service": "ts-node --esm scripts/deployService.ts",
|
|
"deploy:all": "ts-node --esm scripts/deployAll.ts",
|
|
"health:all": "ts-node --esm scripts/checkHealth.ts"
|
|
},
|
|
"dependencies": {
|
|
"express": "^4.21.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.12.7",
|
|
"node-fetch": "^3.0.0",
|
|
"ts-node": "^10.0.0",
|
|
"typescript": "^5.0.0"
|
|
}
|
|
}
|