Update packages

This commit is contained in:
sianida26 2024-05-21 01:41:34 +07:00
parent 3d06f11191
commit 5430eba331
4 changed files with 801 additions and 762 deletions

View File

@ -15,20 +15,20 @@
"bcrypt": "^5.1.1",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.30.10",
"hono": "^4.3.7",
"hono": "^4.3.8",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"postgres": "^3.4.4",
"sharp": "^0.33.3",
"zod": "^3.23.4"
"sharp": "^0.33.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.11.24",
"drizzle-kit": "^0.21.1",
"@types/node": "^20.12.12",
"drizzle-kit": "^0.21.2",
"pg": "^8.11.5",
"tsx": "^4.7.1"
"tsx": "^4.10.5"
},
"exports": {
".": "./src/index.ts",

View File

@ -14,37 +14,37 @@
"@mantine/form": "^7.9.2",
"@mantine/hooks": "^7.9.2",
"@mantine/notifications": "^7.9.2",
"@tanstack/react-query": "^5.36.2",
"@tanstack/react-router": "^1.32.13",
"@tanstack/react-query": "^5.37.1",
"@tanstack/react-router": "^1.33.4",
"@tanstack/react-table": "^8.17.3",
"backend": "workspace:*",
"clsx": "^2.1.1",
"hono": "^4.3.7",
"hono": "^4.3.8",
"mantine-form-zod-resolver": "^1.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.1.0",
"zod": "^3.23.4"
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.2.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@tanstack/eslint-plugin-query": "^5.35.6",
"@tanstack/router-devtools": "^1.32.14",
"@tanstack/router-vite-plugin": "^1.32.10",
"@types/node": "^20.11.24",
"@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-swc": "^3.5.0",
"@tanstack/router-devtools": "^1.33.4",
"@tanstack/router-vite-plugin": "^1.32.17",
"@types/node": "^20.12.12",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"@vitejs/plugin-react-swc": "^3.6.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"postcss": "^8.4.38",
"postcss-preset-mantine": "^1.15.0",
"postcss-simple-vars": "^7.0.1",
"tailwindcss": "^3.4.3",
"typescript": "^5.2.2",
"vite": "^5.2.0"
"typescript": "^5.4.5",
"vite": "^5.2.11"
}
}

View File

@ -66,26 +66,44 @@ const DashboardLayoutDashboardIndexRoute =
declare module '@tanstack/react-router' {
interface FileRoutesByPath {
'/': {
id: '/'
path: '/'
fullPath: '/'
preLoaderRoute: typeof IndexLazyImport
parentRoute: typeof rootRoute
}
'/_dashboardLayout': {
id: '/_dashboardLayout'
path: ''
fullPath: ''
preLoaderRoute: typeof DashboardLayoutImport
parentRoute: typeof rootRoute
}
'/login/': {
id: '/login/'
path: '/login'
fullPath: '/login'
preLoaderRoute: typeof LoginIndexLazyImport
parentRoute: typeof rootRoute
}
'/logout/': {
id: '/logout/'
path: '/logout'
fullPath: '/logout'
preLoaderRoute: typeof LogoutIndexLazyImport
parentRoute: typeof rootRoute
}
'/_dashboardLayout/dashboard/': {
id: '/_dashboardLayout/dashboard/'
path: '/dashboard'
fullPath: '/dashboard'
preLoaderRoute: typeof DashboardLayoutDashboardIndexImport
parentRoute: typeof DashboardLayoutImport
}
'/_dashboardLayout/users/': {
id: '/_dashboardLayout/users/'
path: '/users'
fullPath: '/users'
preLoaderRoute: typeof DashboardLayoutUsersIndexLazyImport
parentRoute: typeof DashboardLayoutImport
}
@ -94,14 +112,14 @@ declare module '@tanstack/react-router' {
// Create and export the route tree
export const routeTree = rootRoute.addChildren([
export const routeTree = rootRoute.addChildren({
IndexLazyRoute,
DashboardLayoutRoute.addChildren([
DashboardLayoutRoute: DashboardLayoutRoute.addChildren({
DashboardLayoutDashboardIndexRoute,
DashboardLayoutUsersIndexLazyRoute,
]),
}),
LoginIndexLazyRoute,
LogoutIndexLazyRoute,
])
})
/* prettier-ignore-end */

File diff suppressed because it is too large Load Diff