workspace/projects/trading-platform/apps/frontend/package.json
rckrdmrd 49155822ae fix: Resolve TypeScript compilation errors across all projects
Platform Marketing Content:
- Add PaginationParams, PaginationMeta, PaginatedResponse interfaces
- Fix JwtAuthGuard import paths (common/guards instead of modules/auth)
- Add missing fields to CRM interfaces (address, keywords, features, benefits)
- Install @nestjs/throttler dependency

ERP Suite - Construccion:
- Create tsconfig.node.json for web frontend
- Add vite-env.d.ts for Vite types
- Fix implicit return errors in Express controllers
- Prefix unused parameters with underscore

ERP Suite - ERP Core:
- Export PoolClient type from database config
- Fix invoice type comparison (customer/supplier vs out_invoice)
- Refactor base.service.ts query handling for proper type inference
- Rename Role type to RoleType to avoid conflict with entity
- Fix ProtectedRoute to use role?.name instead of roles array

ERP Suite - POS Micro:
- Add vite-env.d.ts for Vite types
- Fix Sale property names (discountAmount, changeAmount)
- Export TodaySummary interface from sales service

All projects now pass npm install and npm run build successfully.

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-08 22:35:55 -06:00

60 lines
1.7 KiB
JSON

{
"name": "@orbiquant/frontend",
"version": "0.1.0",
"type": "module",
"description": "OrbiQuant IA - Frontend Application",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,css}\"",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"@hookform/resolvers": "^3.3.2",
"@stripe/react-stripe-js": "^2.4.0",
"@stripe/stripe-js": "^2.2.1",
"@tanstack/react-query": "^5.14.0",
"axios": "^1.6.2",
"clsx": "^2.0.0",
"date-fns": "^4.1.0",
"lightweight-charts": "^4.1.1",
"lucide-react": "^0.300.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.49.2",
"react-hot-toast": "^2.4.1",
"react-router-dom": "^6.21.0",
"zod": "^3.22.4",
"zustand": "^4.4.7"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.6",
"@testing-library/react": "^14.1.2",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@eslint/js": "^9.17.0",
"typescript-eslint": "^8.18.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/ui": "^3.0.0",
"autoprefixer": "^10.4.16",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^15.14.0",
"jsdom": "^23.0.1",
"postcss": "^8.4.32",
"prettier": "^3.1.1",
"tailwindcss": "^3.4.0",
"typescript": "^5.3.3",
"vite": "^6.2.0",
"vitest": "^3.0.0"
}
}