Initial commit: code as received (Create/Anything export)

Insole-production time tracker exported from the Create/Anything AI
platform. Baseline snapshot before any reverse-engineering or cleanup.

- apps/mobile: Expo Router app (iOS/Android/web), the only workspace
- publisher/: standalone OpenNext/AWS deploy tooling for the web side
- Backend (/api/tasks, /api/logs + DB) lives remotely, not in this repo
This commit is contained in:
Bas van Rossem
2026-06-17 10:19:33 +02:00
commit d94d0b188b
192 changed files with 50705 additions and 0 deletions

48
apps/web/package.json Normal file
View File

@@ -0,0 +1,48 @@
{
"name": "web",
"private": true,
"scripts": {
"dev": "next dev --port 4000",
"build": "next build",
"start": "next start",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@neondatabase/serverless": "^0.10.4",
"@opentelemetry/api": "^1.9.0",
"@tanstack/react-query": "^5.72.2",
"argon2-wasm-edge": "^1.0.23",
"better-auth": "^1.1.7",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^1.7.0",
"next": "^16.2.6",
"next-themes": "^0.4.6",
"radix-ui": "^1.4.3",
"react": "^19.0.4",
"react-day-picker": "^9.14.0",
"react-dom": "^19.0.4",
"react-hook-form": "^7.72.0",
"recharts": "3.8.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.2.0",
"vanilla-colorful": "^0.7.2",
"vaul": "^1.1.2",
"ws": "^8.18.2"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.16",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.3.0",
"@types/node": "^20",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"@types/ws": "^8.18.1",
"jsdom": "^26.1.0",
"tailwindcss": "^4.0.0",
"typescript": "^5.8.3",
"vitest": "^3.2.6"
}
}