chore: initial commit — monorepo ReadaBook (API NestJS, web PWA, Docker)

This commit is contained in:
Git Agent
2026-08-23 09:56:53 +02:00
commit 8f1140127f
79 changed files with 6456 additions and 0 deletions

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

@ -0,0 +1,30 @@
{
"name": "@readabook/web",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --host 0.0.0.0",
"build": "tsc -p tsconfig.json && vite build",
"lint": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"typecheck": "tsc -p tsconfig.json --noEmit",
"preview": "vite preview --host 0.0.0.0"
},
"dependencies": {
"@readabook/shared": "workspace:*",
"@vitejs/plugin-react": "^6.1.0",
"foliate-js": "^1.0.1",
"lucide-react": "^1.33.0",
"pdfjs-dist": "^6.2.108",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"vite": "^8.2.2"
},
"devDependencies": {
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.3",
"typescript": "^5.7.3",
"vitest": "^3.0.5"
}
}