Files
auditly/package.json
Ra 1a9e92d7bd Implement comprehensive report system with detailed viewing and AI enhancements
- Add detailed report viewing with full-screen ReportDetail component for both company and employee reports
- Fix company wiki to display onboarding Q&A in card format matching Figma designs
- Exclude company owners from employee submission counts (owners contribute to wiki, not employee data)
- Fix employee report generation to include company context (wiki + company report + employee answers)
- Fix company report generation to use filtered employee submissions only
- Add proper error handling for submission data format variations
- Update Firebase functions to use gpt-4o model instead of deprecated gpt-4.1
- Fix UI syntax errors and improve report display functionality
- Add comprehensive logging for debugging report generation flow

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-18 19:08:29 -07:00

51 lines
1.5 KiB
JSON

{
"name": "auditly",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "concurrently -k \"bun run dev:firebase\" \"bun run dev:client\"",
"dev:client": "vite",
"dev:server": "bun --watch server/index.js",
"dev:firebase": "firebase emulators:start --only functions,firestore,database",
"build": "vite build",
"preview": "vite preview",
"deploy:functions": "firebase deploy --only functions",
"deploy:firestore": "firebase deploy --only firestore",
"deploy:database": "firebase deploy --only database",
"emulators": "firebase emulators:start"
},
"dependencies": {
"@google/genai": "^1.14.0",
"@tailwindcss/postcss": "^4.1.12",
"@tailwindcss/vite": "^4.1.12",
"cors": "^2.8.5",
"express": "^5.1.0",
"firebase": "^12.1.0",
"firebase-admin": "^13.4.0",
"firebase-functions": "^6.4.0",
"lucide-react": "^0.539.0",
"openai": "^5.12.2",
"postcss": "^8.5.6",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-router-dom": "^7.8.0",
"recharts": "^3.1.2",
"tailwindcss": "^4.1.12",
"zod": "^4.0.17"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/dotenv": "^8.2.3",
"@types/express": "^4.17.23",
"@types/node": "^22.17.1",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react": "^5.0.0",
"concurrently": "^9.2.0",
"dotenv": "^17.2.1",
"tsx": "^4.20.4",
"typescript": "~5.8.3",
"vite": "^7.1.2"
}
}