Files
blackroad-operating-system/apps/web/package.json
2025-11-21 00:18:26 -06:00

26 lines
584 B
JSON

{
"name": "blackroad-os-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 8080",
"build": "next build",
"start": "next start -p 8080",
"lint": "next lint",
"health": "curl -f http://localhost:8080/health || exit 1"
},
"dependencies": {
"next": "14.2.3",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"eslint": "^9.0.0",
"eslint-config-next": "^15.0.0",
"typescript": "^5.6.0"
}
}