SPB Git

spb/earth-now Public License

earth-now.co — real-time planetary dashboard: live world metrics modeled, not streamed.

TypeScript 93% Shell 2.3% SQL 1.4% JavaScript 1.3% Dockerfile 1.2% CSS 0.8%
906 B · 33 lines json
Raw Blame History
1{2  "name": "@earth-now/web",3  "version": "0.1.0",4  "private": true,5  "description": "earth-now.co web dashboard — Next.js 14 App Router, live planetary counters",6  "author": "Simon-Pierre Boucher <contact@spboucher.ai>",7  "scripts": {8    "dev": "next dev -p 3000",9    "build": "next build",10    "start": "next start -p 3000",11    "test": "vitest run",12    "typecheck": "tsc --noEmit",13    "lint": "echo 'lint: covered by root header check (eslint config TBD)'"14  },15  "dependencies": {16    "@earth-now/counter": "workspace:*",17    "next": "^14.2.15",18    "react": "^18.3.1",19    "react-dom": "^18.3.1"20  },21  "devDependencies": {22    "@types/node": "^20.16.5",23    "@types/react": "^18.3.5",24    "@types/react-dom": "^18.3.0",25    "autoprefixer": "^10.4.20",26    "jsdom": "^24.1.3",27    "postcss": "^8.4.47",28    "tailwindcss": "^3.4.10",29    "typescript": "^5.5.4",30    "vitest": "^2.0.5"31  }32}33