- Added auto-retry feature to ErrorBoundary for handling errors during module federation loading. - Introduced props for configuring retry behavior: autoRetry, retryDelay, and maxRetries. - Implemented retry count management and UI feedback for ongoing retries. - Updated component lifecycle methods to manage retries and cleanup effectively. - Refactored handleRetry method to reset retry count upon manual retry.
37 lines
927 B
JSON
37 lines
927 B
JSON
{
|
|
"name": "scheduling-remote",
|
|
"private": true,
|
|
"version": "0.0.1",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"build:watch": "vite build --watch",
|
|
"serve:dist": "serve -s dist -l 3003",
|
|
"preview": "vite preview --port 3003",
|
|
"dev:watch": "./wait-and-serve.sh"
|
|
},
|
|
"dependencies": {
|
|
"@supabase/supabase-js": "^2.52.0",
|
|
"moment": "^2.30.1",
|
|
"react": "^19.1.0",
|
|
"react-big-calendar": "^1.19.4",
|
|
"react-dnd": "^16.0.1",
|
|
"react-dnd-html5-backend": "^16.0.1",
|
|
"react-dom": "^19.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@originjs/vite-plugin-federation": "^1.3.3",
|
|
"@tailwindcss/vite": "^4.1.11",
|
|
"@types/react": "^19.2.2",
|
|
"@types/react-dom": "^19.2.2",
|
|
"@vitejs/plugin-react": "^4.6.0",
|
|
"http-server": "^14.1.1",
|
|
"serve": "^14.2.3",
|
|
"tailwindcss": "^4.1.11",
|
|
"typescript": "~5.8.3",
|
|
"vite": "^7.0.4"
|
|
}
|
|
}
|
|
|