Presupuestador_web/client/package.json

109 lines
3.6 KiB
JSON
Raw Normal View History

2024-06-06 11:05:54 +00:00
{
"name": "@uecko-presupuestador/client",
"private": true,
"version": "1.0.0",
"author": "Rodax Software <dev@rodax-software.com>",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
2024-06-11 16:48:09 +00:00
"preview": "vite preview",
"test": "jest"
2024-06-06 11:05:54 +00:00
},
"dependencies": {
2024-06-11 16:48:09 +00:00
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
2024-06-06 11:05:54 +00:00
"@hookform/resolvers": "^3.5.0",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-aspect-ratio": "^1.0.3",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-context-menu": "^2.1.5",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-hover-card": "^1.0.7",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-menubar": "^1.0.4",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slider": "^1.1.2",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-toggle": "^1.0.3",
"@radix-ui/react-toggle-group": "^1.0.4",
"@radix-ui/react-tooltip": "^1.0.7",
2024-08-11 11:09:24 +00:00
"@tanstack/react-query": "^5.51.23",
"@tanstack/react-table": "^8.20.1",
2024-08-18 20:39:06 +00:00
"@wojtekmaj/react-hooks": "^1.21.0",
2024-08-11 11:09:24 +00:00
"axios": "^1.7.3",
2024-06-06 11:05:54 +00:00
"class-variance-authority": "^0.7.0",
"cmdk": "^1.0.0",
"date-fns": "^3.6.0",
"embla-carousel-react": "^8.2.0",
2024-08-11 11:09:24 +00:00
"i18next": "^23.12.2",
2024-06-09 20:04:46 +00:00
"i18next-browser-languagedetector": "^8.0.0",
2024-06-06 11:05:54 +00:00
"joi": "^17.13.1",
2024-08-11 11:09:24 +00:00
"lucide-react": "^0.427.0",
2024-08-18 20:39:06 +00:00
"print-js": "^1.6.0",
2024-06-06 11:05:54 +00:00
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
2024-07-10 18:54:33 +00:00
"react-currency-input-field": "^3.8.0",
2024-06-06 11:05:54 +00:00
"react-day-picker": "^8.10.1",
"react-dom": "^18.2.0",
2024-08-11 11:09:24 +00:00
"react-hook-form": "^7.52.2",
"react-hook-form-persist": "^3.0.0",
"react-i18next": "^15.0.1",
2024-08-18 20:39:06 +00:00
"react-pdf": "^9.1.0",
2024-08-11 11:09:24 +00:00
"react-resizable-panels": "^2.0.23",
"react-router-dom": "^6.26.0",
2024-06-06 11:05:54 +00:00
"react-secure-storage": "^1.3.2",
"react-toastify": "^10.0.5",
2024-07-18 16:41:42 +00:00
"react-wrap-balancer": "^1.1.1",
2024-08-22 17:23:12 +00:00
"recharts": "^2.12.7",
"slugify": "^1.6.6",
2024-08-26 14:28:44 +00:00
"use-debounce": "^10.0.3",
"vaul": "^0.9.1"
2024-06-06 11:05:54 +00:00
},
"devDependencies": {
2024-08-11 11:09:24 +00:00
"@tanstack/react-query-devtools": "^5.51.23",
"@testing-library/jest-dom": "^6.4.8",
2024-06-11 16:48:09 +00:00
"@testing-library/react": "^16.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.5.12",
2024-06-06 11:05:54 +00:00
"@types/node": "^20.14.0",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.2.1",
2024-08-22 17:23:12 +00:00
"@welldone-software/why-did-you-render": "^8.0.3",
2024-08-11 11:09:24 +00:00
"autoprefixer": "^10.4.20",
2024-06-06 11:05:54 +00:00
"clsx": "^2.1.1",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
2024-06-11 16:48:09 +00:00
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
2024-08-11 11:09:24 +00:00
"postcss": "^8.4.41",
2024-06-06 11:05:54 +00:00
"postcss-import": "^16.1.0",
"tailwind-merge": "^2.3.0",
2024-08-11 11:09:24 +00:00
"tailwindcss": "^3.4.9",
"ts-jest": "^29.2.4",
2024-06-11 16:48:09 +00:00
"ts-node": "^10.9.2",
2024-08-11 11:09:24 +00:00
"typescript": "^5.5.4",
2024-08-18 20:39:06 +00:00
"vite": "^5.4.0",
"vite-plugin-static-copy": "^1.0.6"
2024-06-06 11:05:54 +00:00
}
}