mirror of
https://github.com/blackboxprogramming/BlackRoad-Operating-System.git
synced 2026-03-17 01:57:11 -05:00
24 lines
565 B
JSON
24 lines
565 B
JSON
{
|
|
"name": "blackroad-os-agents",
|
|
"version": "0.1.0",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"health": "curl -f http://localhost:8080/health || exit 1"
|
|
},
|
|
"dependencies": {
|
|
"express": "^4.19.0",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.4.5"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cors": "^2.8.17",
|
|
"@types/express": "^4.17.21",
|
|
"@types/node": "^20.11.0",
|
|
"ts-node-dev": "^2.0.0",
|
|
"typescript": "^5.6.0"
|
|
}
|
|
}
|