mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-19 15:17:42 +02:00
✨ feat(clock): add complete Clock app with backend, web, and landing
Features: - World clock with timezone support and drag & drop sorting - Alarms with repeat days, snooze, and custom sounds - Multiple timers with start/pause/reset controls - Stopwatch with lap times (local only) - Pomodoro timer with customizable intervals - Analog and digital clock widgets - i18n support (DE, EN, FR, ES, IT) Stack: - Backend: NestJS 10, Drizzle ORM, PostgreSQL (port 3017) - Web: SvelteKit 2.x, Svelte 5 runes, Tailwind CSS 4 (port 5186) - Landing: Astro 5.x with animated clock hero (port 4323) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
110c6779a8
commit
2ef457ea23
104 changed files with 7517 additions and 2 deletions
23
apps/clock/package.json
Normal file
23
apps/clock/package.json
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"name": "clock",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"description": "Clock App - World Clock, Alarms, Timers & Stylish Clock Widgets",
|
||||
"scripts": {
|
||||
"dev": "turbo run dev",
|
||||
"dev:backend": "pnpm --filter @clock/backend dev",
|
||||
"dev:web": "pnpm --filter @clock/web dev",
|
||||
"dev:landing": "pnpm --filter @clock/landing dev",
|
||||
"dev:mobile": "pnpm --filter @clock/mobile dev",
|
||||
"build": "turbo run build",
|
||||
"lint": "turbo run lint",
|
||||
"clean": "turbo run clean",
|
||||
"db:push": "pnpm --filter @clock/backend db:push",
|
||||
"db:studio": "pnpm --filter @clock/backend db:studio",
|
||||
"db:seed": "pnpm --filter @clock/backend db:seed"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "^5.9.3"
|
||||
},
|
||||
"packageManager": "pnpm@9.15.0"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue