comptia-security-plus-701/package.json
iakhator a4460c0044 Add Vite build setup and modular architecture
- Extract all 330 questions into typed JSON data files (src/data/)
- Build QuestionCard component — renders question, handles answer selection
- Build TestSection component — manages test state, scoring, reset
- Build Navbar component — sidebar nav with active state tracking
- Add src/main.js router — lazy-renders test sections on navigation
- Add vite.config.js for production builds
- Add README with setup, structure, question schema, deploy instructions

Tests still pass through the static index.html on main branch.
This branch wires in Vite while keeping static HTML as fallback.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-12 15:12:18 +01:00

13 lines
279 B
JSON

{
"name": "comptia-security-plus-701",
"version": "1.0.0",
"description": "Interactive CompTIA Security+ SY0-701 study guide",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"devDependencies": {
"vite": "^8.0.8"
}
}