791e809222
Adds a third layout option alongside Stacked and Split. In Draw mode a canvas overlay covers the scripture panel; the Pointer Events API routes Apple Pencil input to perfect-freehand strokes while letting finger touches fall through for normal scrolling. A floating toolbar provides pen, highlighter, and eraser tools, six color swatches, S/M/L sizes, undo, clear, and a Done button to return to Stacked view. Strokes are stored as inkStrokes[] on each chunk and rendered as a read-only transparent canvas overlay (InkLayer) in Stacked/Split modes. migrateChunk is updated so all existing chunks get inkStrokes: [] on first load. Also adds a simple in-memory rate limiter on auth endpoints (10 attempts per 15 min per IP). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
49 lines
1.3 KiB
JSON
49 lines
1.3 KiB
JSON
{
|
|
"name": "bible-study-app",
|
|
"private": true,
|
|
"version": "0.0.1",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"dev:server": "node server/index.js",
|
|
"dev:full": "concurrently \"npm run dev:server\" \"npm run dev\"",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"start": "NODE_ENV=production node server/index.js",
|
|
"test": "vitest",
|
|
"test:run": "vitest run",
|
|
"coverage": "vitest run --coverage",
|
|
"backup": "bash scripts/backup-data.sh",
|
|
"restore": "bash scripts/restore-data.sh"
|
|
},
|
|
"dependencies": {
|
|
"bcryptjs": "^3.0.3",
|
|
"better-sqlite3": "^12.10.0",
|
|
"concurrently": "^8.2.2",
|
|
"docx": "^9.7.0",
|
|
"dompurify": "^3.4.9",
|
|
"express": "^4.19.2",
|
|
"express-session": "^1.19.0",
|
|
"mammoth": "^1.12.0",
|
|
"otplib": "^12.0.1",
|
|
"perfect-freehand": "^1.2.3",
|
|
"qrcode": "^1.5.4",
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@testing-library/jest-dom": "^6.9.1",
|
|
"@testing-library/react": "^16.3.2",
|
|
"@testing-library/user-event": "^14.6.1",
|
|
"@vitejs/plugin-react": "^4.3.0",
|
|
"@vitest/coverage-v8": "^4.1.7",
|
|
"autoprefixer": "^10.4.19",
|
|
"csv-parse": "^6.2.1",
|
|
"jsdom": "^29.1.1",
|
|
"postcss": "^8.4.35",
|
|
"tailwindcss": "^3.4.4",
|
|
"vite": "^5.4.1",
|
|
"vitest": "^4.1.7"
|
|
}
|
|
}
|