Update dependencies and refactor SentryProvider component

This update includes version bumps for several dependencies across multiple packages and applications including "@sentry/nextjs", "lucide-react", "@types/node", "pnpm", and others. It also includes a change to the SentryProvider component where the SentryMonitoringService is now instantiated outside the MonitoringProvider function instead of using useRef inside the function.
This commit is contained in:
giancarlo
2024-05-31 19:38:56 +07:00
parent 4be66cb3da
commit 88ff32479a
18 changed files with 300 additions and 286 deletions

View File

@@ -13,7 +13,7 @@
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.44.1",
"@types/node": "^20.12.12",
"@types/node": "^20.12.13",
"node-html-parser": "^6.1.13"
}
}

View File

@@ -5,6 +5,9 @@
## AVOID PLACING SENSITIVE DATA IN THIS FILE.
## PUBLIC KEYS OR CONFIGURATION ARE OKAY TO BE PLACED HERE.
# NODE ENV
NODE_ENV=production
# SUPABASE
NEXT_PUBLIC_SUPABASE_URL=

View File

@@ -59,7 +59,7 @@
"@tanstack/react-query-next-experimental": "^5.40.0",
"@tanstack/react-table": "^8.17.3",
"date-fns": "^3.6.0",
"lucide-react": "^0.379.0",
"lucide-react": "^0.381.0",
"next": "14.2.3",
"next-sitemap": "^4.2.3",
"next-themes": "0.3.0",
@@ -79,14 +79,14 @@
"@kit/tsconfig": "workspace:^",
"@next/bundle-analyzer": "14.2.3",
"@types/mdx": "^2.0.13",
"@types/node": "^20.12.12",
"@types/node": "^20.12.13",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.19",
"dotenv-cli": "^7.4.2",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"supabase": "^1.169.8",
"supabase": "^1.172.2",
"tailwindcss": "3.4.3",
"typescript": "^5.4.5"
},