3210132a21
Sets up Vitest + React Testing Library with jsdom, exports utility functions for unit testing, and adds 78 tests covering pure functions and component integration flows (chapter loading, chunk management, navigation, Greek word lookup). https://claude.ai/code/session_01C4T3bYHR2svLq7JVcxKJ6Y
33 lines
769 B
JSON
33 lines
769 B
JSON
{
|
|
"name": "bible-study-app",
|
|
"private": true,
|
|
"version": "0.0.1",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"test": "vitest",
|
|
"test:run": "vitest run",
|
|
"coverage": "vitest run --coverage"
|
|
},
|
|
"dependencies": {
|
|
"docx": "^9.7.0",
|
|
"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",
|
|
"jsdom": "^29.1.1",
|
|
"postcss": "^8.4.35",
|
|
"tailwindcss": "^3.4.4",
|
|
"vite": "^5.4.1",
|
|
"vitest": "^4.1.7"
|
|
}
|
|
}
|