Files
cim_summary/frontend/package.json
Jon 185c780486
Some checks failed
CI/CD Pipeline / Backend - Lint & Test (push) Has been cancelled
CI/CD Pipeline / Frontend - Lint & Test (push) Has been cancelled
CI/CD Pipeline / Security Scan (push) Has been cancelled
CI/CD Pipeline / Build Backend (push) Has been cancelled
CI/CD Pipeline / Build Frontend (push) Has been cancelled
CI/CD Pipeline / Integration Tests (push) Has been cancelled
CI/CD Pipeline / Deploy to Staging (push) Has been cancelled
CI/CD Pipeline / Deploy to Production (push) Has been cancelled
CI/CD Pipeline / Performance Tests (push) Has been cancelled
CI/CD Pipeline / Dependency Updates (push) Has been cancelled
🚀 Update to Claude 3.7 latest and fix LLM processing issues
- Updated Anthropic API to latest version (2024-01-01)
- Set Claude 3.7 Sonnet Latest as primary model
- Removed deprecated Opus 3.5 references
- Fixed LLM response validation and JSON parsing
- Improved error handling and logging
- Updated model configurations and pricing
- Enhanced document processing reliability
- Fixed TypeScript type issues
- Updated environment configuration
2025-08-17 17:31:56 -04:00

85 lines
2.9 KiB
JSON

{
"name": "cim-processor-frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:testing": "vite --mode testing",
"build": "vite build",
"build:testing": "vite build --mode testing",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"deploy:firebase": "npm run build && firebase deploy --only hosting",
"deploy:testing": "firebase use testing && npm run build:testing && firebase deploy --only hosting --config firebase-testing.json",
"deploy:production": "firebase use production && npm run build && firebase deploy --only hosting",
"deploy:preview": "npm run build && firebase hosting:channel:deploy preview",
"emulator": "firebase emulators:start --only hosting",
"emulator:ui": "firebase emulators:start --only hosting --ui",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:unit": "vitest run --reporter=verbose",
"test:integration": "vitest run --reporter=verbose --config vitest.integration.config.ts",
"prepare": "echo 'Skipping husky install for deployment'",
"pre-commit": "lint-staged",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json}\"",
"type-check": "tsc --noEmit",
"quality-check": "npm run lint && npm run format:check && npm run type-check"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"axios": "^1.6.2",
"clsx": "^2.0.0",
"firebase": "^12.1.0",
"lucide-react": "^0.294.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.3.8",
"react-router-dom": "^6.20.1",
"react-window": "^1.8.11",
"react-window-infinite-loader": "^1.0.10",
"tailwind-merge": "^2.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.0",
"@testing-library/react": "^14.1.0",
"@testing-library/user-event": "^14.5.0",
"@types/node": "^24.1.0",
"@types/prettier": "^3.0.0",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@types/react-window": "^1.8.8",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@vitejs/plugin-react": "^4.1.1",
"autoprefixer": "^10.4.16",
"eslint": "^8.53.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.4",
"husky": "^8.0.3",
"jsdom": "^23.0.0",
"lint-staged": "^15.2.0",
"msw": "^2.0.0",
"postcss": "^8.4.31",
"prettier": "^3.1.0",
"tailwindcss": "^3.3.5",
"terser": "^5.43.1",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vitest": "^1.0.0"
}
}