Files
portfolio/package.json
T
sylvaintr b012f28dd8 feat: add hooks for IP and project management, implement routing and internationalization
- Created `useIpPublic` hook for fetching public IP.
- Developed `useProjets`, `useProjet`, `useCreateProjet`, and `useEditProjet` hooks for project management.
- Implemented i18n configuration for internationalization support.
- Added global CSS styles and main application entry point.
- Established routing with lazy-loaded components for better performance.
- Created sections for Home, About, CV, and Projects with responsive design.
- Integrated form handling for project creation and editing with validation.
- Added footer and navigation bar components.
- Defined project types and validation schemas.
- Configured TypeScript and Vite for the project setup.
2026-02-10 10:43:28 +01:00

53 lines
1.4 KiB
JSON

{
"name": "portfolio",
"private": true,
"version": "0.0.0",
"type": "module",
"homepage": ".",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@hookform/resolvers": "^5.2.2",
"@mui/icons-material": "^7.3.2",
"@mui/material": "^7.3.2",
"@mui/x-data-grid": "^8.25.0",
"@mui/x-data-grid-generator": "^8.25.0",
"@tanstack/react-query": "^5.90.2",
"axios": "^1.12.2",
"i18next": "^25.5.2",
"i18next-browser-languagedetector": "^8.2.0",
"i18next-http-backend": "^3.0.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-hook-form": "^7.63.0",
"react-i18next": "^15.7.3",
"react-pdf": "^10.3.0",
"react-router": "^7.9.1",
"react-router-dom": "^7.9.1",
"yup": "^1.7.1"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@tanstack/eslint-plugin-query": "^5.90.1",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@types/react-i18next": "^7.8.3",
"@types/react-query": "^1.2.8",
"@vitejs/plugin-react": "^5.0.0",
"baseline-browser-mapping": "^2.9.15",
"eslint": "^9.33.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.39.1",
"vite": "^7.1.2"
}
}