Files
math2-platform/frontend/package.json
Renato bc43c9e772
Some checks failed
Test Suite / test-backend (push) Has been cancelled
Test Suite / test-frontend (push) Has been cancelled
Test Suite / e2e-tests (push) Has been cancelled
Test Suite / coverage-check (push) Has been cancelled
🎓 Initial commit: Math2 Platform - Plataforma de Álgebra Lineal PRO
 Características:
- 45 ejercicios universitarios (Basic → Advanced)
- Renderizado LaTeX profesional
- IA generativa (Z.ai/DashScope)
- Docker 9 servicios
- Tests 123/123 pasando
- Seguridad enterprise (JWT, XSS, Rate limiting)

🐳 Infraestructura:
- Next.js 14 + Node.js 20
- PostgreSQL 15 + Redis 7
- Docker Compose completo
- Nginx + SSL ready

📚 Documentación:
- 5 informes técnicos completos
- README profesional
- Scripts de deployment automatizados

Estado: Producción lista 
2026-03-31 11:27:11 -03:00

83 lines
2.5 KiB
JSON

{
"name": "math-platform-frontend",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"start:prod": "NODE_ENV=production next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"analyze": "ANALYZE=true next build",
"docker:build": "docker build -f docker/Dockerfile.frontend -t math-frontend ."
},
"dependencies": {
"@hookform/resolvers": "^3.3.4",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"axios": "^1.7.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"date-fns": "^3.6.0",
"katex": "^0.16.8",
"lucide-react": "^0.378.0",
"next": "^14.2.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"react-hook-form": "^7.51.0",
"react-katex": "^3.0.1",
"react-markdown": "^10.1.0",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.0",
"zustand": "^5.0.12"
},
"devDependencies": {
"@next/bundle-analyzer": "^14.2.0",
"@testing-library/jest-dom": "^6.4.0",
"@testing-library/react": "^14.3.0",
"@testing-library/user-event": "^14.5.0",
"@types/katex": "^0.16.8",
"@types/node": "^20.12.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"@vitejs/plugin-react": "^4.2.0",
"@vitest/coverage-v8": "^1.6.0",
"autoprefixer": "^10.4.0",
"css-loader": "^7.1.4",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.0",
"jsdom": "^24.0.0",
"postcss": "^8.4.0",
"postcss-loader": "^8.2.1",
"prettier": "^3.2.0",
"prettier-plugin-tailwindcss": "^0.5.0",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.0",
"typescript": "^5.4.0",
"vitest": "^1.6.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}