package.json 684 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "church-acoustic-suite",
  3. "version": "1.0.0",
  4. "description": "Acoustic analysis tool for PBCC Universal Hall — MS6 ceiling speaker system with REW and LLM integration",
  5. "type": "module",
  6. "scripts": {
  7. "dev": "vite",
  8. "build": "vite build",
  9. "preview": "vite preview",
  10. "test": "vitest",
  11. "test:run": "vitest run",
  12. "test:ui": "vitest --ui",
  13. "test:coverage": "vitest run --coverage"
  14. },
  15. "dependencies": {
  16. "react": "^18.3.1",
  17. "react-dom": "^18.3.1"
  18. },
  19. "devDependencies": {
  20. "@vitejs/plugin-react": "^4.3.1",
  21. "@vitest/coverage-v8": "^2.1.4",
  22. "@vitest/ui": "^2.1.4",
  23. "vite": "^5.4.10",
  24. "vitest": "^2.1.4"
  25. }
  26. }