Files
Mavis 938ba042b3
CI / Lint, typecheck, test, build (push) Failing after 22s
Phase 0: fix typecheck, format, build; remove stray emit; pin port via env
2026-06-02 16:07:09 +00:00

30 lines
789 B
JSON

{
"name": "@kerbal-rt/hub",
"version": "0.1.0",
"private": true,
"description": "Marketing/operations hub: mission calendar, crew, media, Spacenomicon",
"scripts": {
"dev": "next dev --port ${PORT:-3000}",
"build": "next build",
"start": "next start --port ${PORT:-3000}",
"typecheck": "tsc --noEmit",
"lint": "next lint",
"test": "echo 'no tests yet'"
},
"dependencies": {
"@kerbal-rt/shared-types": "workspace:*",
"@kerbal-rt/ui": "workspace:*",
"next": "^14.2.13",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/node": "^22.5.0",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.13",
"typescript": "^5.6.2"
}
}