From 0e019e3c30e467018278023dc0f3f637270d027e Mon Sep 17 00:00:00 2001
From: Sean O'Connor
Date: Wed, 18 Sep 2024 18:38:35 -0400
Subject: [PATCH] create database connection
---
.env | 11 +-
.gitignore | 5 +-
package.json | 34 +-
pnpm-lock.yaml | 858 +++++++++---------------
src/app/api/studies/route.ts | 31 +
src/app/dash/layout.tsx | 8 +-
src/app/dash/page.tsx | 37 +-
src/app/layout.tsx | 3 +-
src/app/page.tsx | 2 +-
src/app/sign-in/[[...sign-in]]/page.tsx | 9 +-
src/app/sign-up/[[...sign-up]]/page.tsx | 7 +-
src/components/Studies.tsx | 122 ++++
src/components/sidebar.tsx | 4 +-
src/components/ui/input.tsx | 6 +-
src/server/db/schema.ts | 27 +-
15 files changed, 557 insertions(+), 607 deletions(-)
create mode 100644 src/app/api/studies/route.ts
create mode 100644 src/components/Studies.tsx
diff --git a/.env b/.env
index 89c9f84..1603226 100644
--- a/.env
+++ b/.env
@@ -2,12 +2,15 @@
# should be updated accordingly.
# Drizzle
-DATABASE_URL="postgresql://postgres:password@localhost:5432/hristudio"
+DATABASE_URL="postgresql://postgres:jusxah-jufrew-niwjY5@db:5432/hristudio"
+# Clerk
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=pk_test_cmVmaW5lZC1kcnVtLTIzLmNsZXJrLmFjY291bnRzLmRldiQ
CLERK_SECRET_KEY=sk_test_3qESERGxZqHpROHzFe7nYxjfqfVhpHWS1UVDQt86v8
NEXT_PUBLIC_CLERK_SIGN_IN_URL=/sign-in
NEXT_PUBLIC_CLERK_SIGN_UP_URL=/sign-up
-# Example:
-# SERVERVAR="foo"
-# NEXT_PUBLIC_CLIENTVAR="bar"
+
+# Database
+POSTGRES_USER=postgres
+POSTGRES_PASSWORD=jusxah-jufrew-niwjY5
+POSTGRES_DB=hristudio
\ No newline at end of file
diff --git a/.gitignore b/.gitignore
index 9313f4a..40f873f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -53,4 +53,7 @@ psd
thumb
sketch
-# End of https://www.toptal.com/developers/gitignore/api/nextjs,react
\ No newline at end of file
+pnpm-lock.yaml
+
+# End of https://www.toptal.com/developers/gitignore/api/nextjs,react
+pnpm-lock.yaml
diff --git a/package.json b/package.json
index 0a7594d..c793ae1 100644
--- a/package.json
+++ b/package.json
@@ -14,7 +14,7 @@
"start": "next start"
},
"dependencies": {
- "@clerk/nextjs": "^5.5.2",
+ "@clerk/nextjs": "^5.6.0",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-icons": "^1.3.0",
@@ -25,9 +25,9 @@
"clsx": "^2.1.1",
"cn": "^0.1.1",
"drizzle-orm": "^0.33.0",
- "geist": "^1.3.0",
+ "geist": "^1.3.1",
"lucide-react": "^0.441.0",
- "next": "^14.2.4",
+ "next": "^14.2.12",
"next-themes": "^0.3.0",
"postgres": "^3.4.4",
"react": "^18.3.1",
@@ -35,24 +35,24 @@
"react-icons": "^5.3.0",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
- "zod": "^3.23.3"
+ "zod": "^3.23.8"
},
"devDependencies": {
- "@types/eslint": "^8.56.10",
- "@types/node": "^20.14.10",
- "@types/react": "^18.3.3",
+ "@types/eslint": "^8.56.12",
+ "@types/node": "^20.16.5",
+ "@types/react": "^18.3.7",
"@types/react-dom": "^18.3.0",
- "@typescript-eslint/eslint-plugin": "^8.1.0",
- "@typescript-eslint/parser": "^8.1.0",
- "drizzle-kit": "^0.24.0",
- "eslint": "^8.57.0",
- "eslint-config-next": "^14.2.4",
+ "@typescript-eslint/eslint-plugin": "^8.6.0",
+ "@typescript-eslint/parser": "^8.6.0",
+ "drizzle-kit": "^0.24.2",
+ "eslint": "^8.57.1",
+ "eslint-config-next": "^14.2.12",
"eslint-plugin-drizzle": "^0.2.3",
- "postcss": "^8.4.39",
- "prettier": "^3.3.2",
- "prettier-plugin-tailwindcss": "^0.6.5",
- "tailwindcss": "^3.4.3",
- "typescript": "^5.5.3"
+ "postcss": "^8.4.47",
+ "prettier": "^3.3.3",
+ "prettier-plugin-tailwindcss": "^0.6.6",
+ "tailwindcss": "^3.4.12",
+ "typescript": "^5.6.2"
},
"ct3aMetadata": {
"initVersion": "7.37.0"
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index a4ebfbb..ff14dab 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -9,23 +9,23 @@ importers:
.:
dependencies:
'@clerk/nextjs':
- specifier: ^5.5.2
- version: 5.5.2(next@14.2.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ specifier: ^5.6.0
+ version: 5.6.0(next@14.2.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@radix-ui/react-avatar':
specifier: ^1.1.0
- version: 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@radix-ui/react-dialog':
specifier: ^1.1.1
- version: 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@radix-ui/react-icons':
specifier: ^1.3.0
version: 1.3.0(react@18.3.1)
'@radix-ui/react-separator':
specifier: ^1.1.0
- version: 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@radix-ui/react-slot':
specifier: ^1.1.0
- version: 1.1.0(@types/react@18.3.5)(react@18.3.1)
+ version: 1.1.0(@types/react@18.3.7)(react@18.3.1)
'@t3-oss/env-nextjs':
specifier: ^0.10.1
version: 0.10.1(typescript@5.6.2)(zod@3.23.8)
@@ -40,16 +40,16 @@ importers:
version: 0.1.1
drizzle-orm:
specifier: ^0.33.0
- version: 0.33.0(@types/react@18.3.5)(postgres@3.4.4)(react@18.3.1)
+ version: 0.33.0(@types/react@18.3.7)(postgres@3.4.4)(react@18.3.1)
geist:
- specifier: ^1.3.0
- version: 1.3.1(next@14.2.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
+ specifier: ^1.3.1
+ version: 1.3.1(next@14.2.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
lucide-react:
specifier: ^0.441.0
version: 0.441.0(react@18.3.1)
next:
- specifier: ^14.2.4
- version: 14.2.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ specifier: ^14.2.12
+ version: 14.2.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
next-themes:
specifier: ^0.3.0
version: 0.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -70,55 +70,55 @@ importers:
version: 2.5.2
tailwindcss-animate:
specifier: ^1.0.7
- version: 1.0.7(tailwindcss@3.4.11)
+ version: 1.0.7(tailwindcss@3.4.12)
zod:
- specifier: ^3.23.3
+ specifier: ^3.23.8
version: 3.23.8
devDependencies:
'@types/eslint':
- specifier: ^8.56.10
+ specifier: ^8.56.12
version: 8.56.12
'@types/node':
- specifier: ^20.14.10
+ specifier: ^20.16.5
version: 20.16.5
'@types/react':
- specifier: ^18.3.3
- version: 18.3.5
+ specifier: ^18.3.7
+ version: 18.3.7
'@types/react-dom':
specifier: ^18.3.0
version: 18.3.0
'@typescript-eslint/eslint-plugin':
- specifier: ^8.1.0
- version: 8.5.0(@typescript-eslint/parser@8.5.0(eslint@8.57.0)(typescript@5.6.2))(eslint@8.57.0)(typescript@5.6.2)
+ specifier: ^8.6.0
+ version: 8.6.0(@typescript-eslint/parser@8.6.0(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1)(typescript@5.6.2)
'@typescript-eslint/parser':
- specifier: ^8.1.0
- version: 8.5.0(eslint@8.57.0)(typescript@5.6.2)
+ specifier: ^8.6.0
+ version: 8.6.0(eslint@8.57.1)(typescript@5.6.2)
drizzle-kit:
- specifier: ^0.24.0
+ specifier: ^0.24.2
version: 0.24.2
eslint:
- specifier: ^8.57.0
- version: 8.57.0
+ specifier: ^8.57.1
+ version: 8.57.1
eslint-config-next:
- specifier: ^14.2.4
- version: 14.2.11(eslint@8.57.0)(typescript@5.6.2)
+ specifier: ^14.2.12
+ version: 14.2.12(eslint@8.57.1)(typescript@5.6.2)
eslint-plugin-drizzle:
specifier: ^0.2.3
- version: 0.2.3(eslint@8.57.0)
+ version: 0.2.3(eslint@8.57.1)
postcss:
- specifier: ^8.4.39
- version: 8.4.45
+ specifier: ^8.4.47
+ version: 8.4.47
prettier:
- specifier: ^3.3.2
+ specifier: ^3.3.3
version: 3.3.3
prettier-plugin-tailwindcss:
- specifier: ^0.6.5
+ specifier: ^0.6.6
version: 0.6.6(prettier@3.3.3)
tailwindcss:
- specifier: ^3.4.3
- version: 3.4.11
+ specifier: ^3.4.12
+ version: 3.4.12
typescript:
- specifier: ^5.5.3
+ specifier: ^5.6.2
version: 5.6.2
packages:
@@ -127,27 +127,27 @@ packages:
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
engines: {node: '>=10'}
- '@clerk/backend@1.11.1':
- resolution: {integrity: sha512-g+jk1wxS0j6s1or6e3rf8KK4bHaIxajCMHAASyhfl9a9OVBqtkeMgbQ3+LIFDRAOSQLxLKrIqJgPGPfOoHz17Q==}
+ '@clerk/backend@1.13.2':
+ resolution: {integrity: sha512-VpAkb/P/fybC+Rv1uEuUiMXTVxmnl1Umj9wMfS0ZIPx/hu6t3PLVZbGYeNwQULr6mUE5qhomJoEkTsqGyaR8Pg==}
engines: {node: '>=18.17.0'}
- '@clerk/clerk-react@5.8.2':
- resolution: {integrity: sha512-5wXr02TmxlGBjBTrM5URCk01b0q/Po6xg3SPo/U8HgrQ8qnY82hbnLxZ1dUuqH3MIzUh2VAoISJzF4TEZYqJJA==}
+ '@clerk/clerk-react@5.9.1':
+ resolution: {integrity: sha512-I2gAceIkJtQl3uEyPbjUKPbDpssj7uJt+D0QY7cWOECLvpump+B8s19DJ6OFkuD7pwlzeZp5QrdMaMpcCUReEg==}
engines: {node: '>=18.17.0'}
peerDependencies:
react: '>=18 || >=19.0.0-beta'
react-dom: '>=18 || >=19.0.0-beta'
- '@clerk/nextjs@5.5.2':
- resolution: {integrity: sha512-xBxwKzjvaJOHY8iCD5AwBU39owLUJw2rC6ndlC+R7mlPTXBrGCjLUNPh8vkokM2z3qACM4mDOGGchj2L8jJ7GQ==}
+ '@clerk/nextjs@5.6.0':
+ resolution: {integrity: sha512-Na4gOLcWUIUUdW87Kjj2agNz0pxRSaSNMe1ob45e6QVLJJiuc22hqQnHfkm8dXifctjksgZzba4ujpb31wtvvQ==}
engines: {node: '>=18.17.0'}
peerDependencies:
next: ^13.5.4 || ^14.0.3 || >=15.0.0-rc
react: '>=18 || >=19.0.0-beta'
react-dom: '>=18 || >=19.0.0-beta'
- '@clerk/shared@2.7.2':
- resolution: {integrity: sha512-0SymNLqE5oMPf1XwtqNazNcpIoCKUv77f8rHpx4U8mg73uXYfuEQThNgCJyoM4/qxYLL3SBPKAlZl9MAHfSiyA==}
+ '@clerk/shared@2.8.1':
+ resolution: {integrity: sha512-8LxnrQDj9xdKcOFQa4FSKb3P5loZeLMiynzD9yBJgCBTCJ8dNV//qySlP6xK6z172L8RwnDk29yO9J+v+FS9Sw==}
engines: {node: '>=18.17.0'}
peerDependencies:
react: '>=18 || >=19.0.0-beta'
@@ -158,8 +158,8 @@ packages:
react-dom:
optional: true
- '@clerk/types@4.20.1':
- resolution: {integrity: sha512-s2v3wFgLsB+d0Ot5yN+5IjRNKWl63AAeEczTZDZYSWuNkGihvEXYjS2NtnYuhROBRgWEHEsm0JOp0rQkfTMkBw==}
+ '@clerk/types@4.21.0':
+ resolution: {integrity: sha512-yyPNF4agzub9zXOht9Bk8HG+OkHfLKIpsQuTCiZJszehcKNUqKvJZRxUwdRREBYnBdMl632PKCwbckZsChVxVQ==}
engines: {node: '>=18.17.0'}
'@drizzle-team/brocli@0.10.1':
@@ -447,20 +447,20 @@ packages:
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
- '@eslint-community/regexpp@4.11.0':
- resolution: {integrity: sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==}
+ '@eslint-community/regexpp@4.11.1':
+ resolution: {integrity: sha512-m4DVN9ZqskZoLU5GlWZadwDnYo3vAEydiUayB9widCl9ffWx2IvPnp6n3on5rJmziJSw9Bv+Z3ChDVdMwXCY8Q==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
'@eslint/eslintrc@2.1.4':
resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- '@eslint/js@8.57.0':
- resolution: {integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==}
+ '@eslint/js@8.57.1':
+ resolution: {integrity: sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- '@humanwhocodes/config-array@0.11.14':
- resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==}
+ '@humanwhocodes/config-array@0.13.0':
+ resolution: {integrity: sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==}
engines: {node: '>=10.10.0'}
deprecated: Use @eslint/config-array instead
@@ -494,62 +494,62 @@ packages:
'@jridgewell/trace-mapping@0.3.25':
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
- '@next/env@14.2.11':
- resolution: {integrity: sha512-HYsQRSIXwiNqvzzYThrBwq6RhXo3E0n8j8nQnAs8i4fCEo2Zf/3eS0IiRA8XnRg9Ha0YnpkyJZIZg1qEwemrHw==}
+ '@next/env@14.2.12':
+ resolution: {integrity: sha512-3fP29GIetdwVIfIRyLKM7KrvJaqepv+6pVodEbx0P5CaMLYBtx+7eEg8JYO5L9sveJO87z9eCReceZLi0hxO1Q==}
- '@next/eslint-plugin-next@14.2.11':
- resolution: {integrity: sha512-7mw+xW7Y03Ph4NTCcAzYe+vu4BNjEHZUfZayyF3Y1D9RX6c5NIe25m1grHEAkyUuaqjRxOYhnCNeglOkIqLkBA==}
+ '@next/eslint-plugin-next@14.2.12':
+ resolution: {integrity: sha512-cPrKbXtK8NTThOOFNxRGGTw+5s02Ek8z8ri/hZqeKs6uP8LOTGqFyBy6hpCXt7TvLzzriWiiwRyD4h0XYmPEEg==}
- '@next/swc-darwin-arm64@14.2.11':
- resolution: {integrity: sha512-eiY9u7wEJZWp/Pga07Qy3ZmNEfALmmSS1HtsJF3y1QEyaExu7boENz11fWqDmZ3uvcyAxCMhTrA1jfVxITQW8g==}
+ '@next/swc-darwin-arm64@14.2.12':
+ resolution: {integrity: sha512-crHJ9UoinXeFbHYNok6VZqjKnd8rTd7K3Z2zpyzF1ch7vVNKmhjv/V7EHxep3ILoN8JB9AdRn/EtVVyG9AkCXw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- '@next/swc-darwin-x64@14.2.11':
- resolution: {integrity: sha512-lnB0zYCld4yE0IX3ANrVMmtAbziBb7MYekcmR6iE9bujmgERl6+FK+b0MBq0pl304lYe7zO4yxJus9H/Af8jbg==}
+ '@next/swc-darwin-x64@14.2.12':
+ resolution: {integrity: sha512-JbEaGbWq18BuNBO+lCtKfxl563Uw9oy2TodnN2ioX00u7V1uzrsSUcg3Ep9ce+P0Z9es+JmsvL2/rLphz+Frcw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
- '@next/swc-linux-arm64-gnu@14.2.11':
- resolution: {integrity: sha512-Ulo9TZVocYmUAtzvZ7FfldtwUoQY0+9z3BiXZCLSUwU2bp7GqHA7/bqrfsArDlUb2xeGwn3ZuBbKtNK8TR0A8w==}
+ '@next/swc-linux-arm64-gnu@14.2.12':
+ resolution: {integrity: sha512-qBy7OiXOqZrdp88QEl2H4fWalMGnSCrr1agT/AVDndlyw2YJQA89f3ttR/AkEIP9EkBXXeGl6cC72/EZT5r6rw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- '@next/swc-linux-arm64-musl@14.2.11':
- resolution: {integrity: sha512-fH377DnKGyUnkWlmUpFF1T90m0dADBfK11dF8sOQkiELF9M+YwDRCGe8ZyDzvQcUd20Rr5U7vpZRrAxKwd3Rzg==}
+ '@next/swc-linux-arm64-musl@14.2.12':
+ resolution: {integrity: sha512-EfD9L7o9biaQxjwP1uWXnk3vYZi64NVcKUN83hpVkKocB7ogJfyH2r7o1pPnMtir6gHZiGCeHKagJ0yrNSLNHw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- '@next/swc-linux-x64-gnu@14.2.11':
- resolution: {integrity: sha512-a0TH4ZZp4NS0LgXP/488kgvWelNpwfgGTUCDXVhPGH6pInb7yIYNgM4kmNWOxBFt+TIuOH6Pi9NnGG4XWFUyXQ==}
+ '@next/swc-linux-x64-gnu@14.2.12':
+ resolution: {integrity: sha512-iQ+n2pxklJew9IpE47hE/VgjmljlHqtcD5UhZVeHICTPbLyrgPehaKf2wLRNjYH75udroBNCgrSSVSVpAbNoYw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- '@next/swc-linux-x64-musl@14.2.11':
- resolution: {integrity: sha512-DYYZcO4Uir2gZxA4D2JcOAKVs8ZxbOFYPpXSVIgeoQbREbeEHxysVsg3nY4FrQy51e5opxt5mOHl/LzIyZBoKA==}
+ '@next/swc-linux-x64-musl@14.2.12':
+ resolution: {integrity: sha512-rFkUkNwcQ0ODn7cxvcVdpHlcOpYxMeyMfkJuzaT74xjAa5v4fxP4xDk5OoYmPi8QNLDs3UgZPMSBmpBuv9zKWA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- '@next/swc-win32-arm64-msvc@14.2.11':
- resolution: {integrity: sha512-PwqHeKG3/kKfPpM6of1B9UJ+Er6ySUy59PeFu0Un0LBzJTRKKAg2V6J60Yqzp99m55mLa+YTbU6xj61ImTv9mg==}
+ '@next/swc-win32-arm64-msvc@14.2.12':
+ resolution: {integrity: sha512-PQFYUvwtHs/u0K85SG4sAdDXYIPXpETf9mcEjWc0R4JmjgMKSDwIU/qfZdavtP6MPNiMjuKGXHCtyhR/M5zo8g==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
- '@next/swc-win32-ia32-msvc@14.2.11':
- resolution: {integrity: sha512-0U7PWMnOYIvM74GY6rbH6w7v+vNPDVH1gUhlwHpfInJnNe5LkmUZqhp7FNWeNa5wbVgRcRi1F1cyxp4dmeLLvA==}
+ '@next/swc-win32-ia32-msvc@14.2.12':
+ resolution: {integrity: sha512-FAj2hMlcbeCV546eU2tEv41dcJb4NeqFlSXU/xL/0ehXywHnNpaYajOUvn3P8wru5WyQe6cTZ8fvckj/2XN4Vw==}
engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
- '@next/swc-win32-x64-msvc@14.2.11':
- resolution: {integrity: sha512-gQpS7mcgovWoaTG1FbS5/ojF7CGfql1Q0ZLsMrhcsi2Sr9HEqsUZ70MPJyaYBXbk6iEAP7UXMD9HC8KY1qNwvA==}
+ '@next/swc-win32-x64-msvc@14.2.12':
+ resolution: {integrity: sha512-yu8QvV53sBzoIVRHsxCHqeuS8jYq6Lrmdh0briivuh+Brsp6xjg80MAozUsBTAV9KNmY08KlX0KYTWz1lbPzEg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
@@ -800,8 +800,8 @@ packages:
'@types/eslint@8.56.12':
resolution: {integrity: sha512-03ruubjWyOHlmljCVoxSuNDdmfZDzsrrz0P2LeJsOXr+ZwFQ+0yQIwNCwt/GYhV7Z31fgtXJTAEs+FYlEL851g==}
- '@types/estree@1.0.5':
- resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
+ '@types/estree@1.0.6':
+ resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
'@types/json-schema@7.0.15':
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
@@ -812,31 +812,17 @@ packages:
'@types/node@20.16.5':
resolution: {integrity: sha512-VwYCweNo3ERajwy0IUlqqcyZ8/A7Zwa9ZP3MnENWcB11AejO+tLy3pu850goUW2FC/IJMdZUfKpX/yxL1gymCA==}
- '@types/prop-types@15.7.12':
- resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==}
+ '@types/prop-types@15.7.13':
+ resolution: {integrity: sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA==}
'@types/react-dom@18.3.0':
resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==}
- '@types/react@18.3.5':
- resolution: {integrity: sha512-WeqMfGJLGuLCqHGYRGHxnKrXcTitc6L/nBUWfWPcTarG3t9PsquqUMuVeXZeca+mglY4Vo5GZjCi0A3Or2lnxA==}
+ '@types/react@18.3.7':
+ resolution: {integrity: sha512-KUnDCJF5+AiZd8owLIeVHqmW9yM4sqmDVf2JRJiBMFkGvkoZ4/WyV2lL4zVsoinmRS/W3FeEdZLEWFRofnT2FQ==}
- '@types/semver@7.5.8':
- resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==}
-
- '@typescript-eslint/eslint-plugin@7.2.0':
- resolution: {integrity: sha512-mdekAHOqS9UjlmyF/LSs6AIEvfceV749GFxoBAjwAv0nkevfKHWQFDMcBZWUiIC5ft6ePWivXoS36aKQ0Cy3sw==}
- engines: {node: ^16.0.0 || >=18.0.0}
- peerDependencies:
- '@typescript-eslint/parser': ^7.0.0
- eslint: ^8.56.0
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
-
- '@typescript-eslint/eslint-plugin@8.5.0':
- resolution: {integrity: sha512-lHS5hvz33iUFQKuPFGheAB84LwcJ60G8vKnEhnfcK1l8kGVLro2SFYW6K0/tj8FUhRJ0VHyg1oAfg50QGbPPHw==}
+ '@typescript-eslint/eslint-plugin@8.6.0':
+ resolution: {integrity: sha512-UOaz/wFowmoh2G6Mr9gw60B1mm0MzUtm6Ic8G2yM1Le6gyj5Loi/N+O5mocugRGY+8OeeKmkMmbxNqUCq3B4Sg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
'@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
@@ -846,18 +832,8 @@ packages:
typescript:
optional: true
- '@typescript-eslint/parser@7.2.0':
- resolution: {integrity: sha512-5FKsVcHTk6TafQKQbuIVkXq58Fnbkd2wDL4LB7AURN7RUOu1utVP+G8+6u3ZhEroW3DF6hyo3ZEXxgKgp4KeCg==}
- engines: {node: ^16.0.0 || >=18.0.0}
- peerDependencies:
- eslint: ^8.56.0
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
-
- '@typescript-eslint/parser@8.5.0':
- resolution: {integrity: sha512-gF77eNv0Xz2UJg/NbpWJ0kqAm35UMsvZf1GHj8D9MRFTj/V3tAciIWXfmPLsAAF/vUlpWPvUDyH1jjsr0cMVWw==}
+ '@typescript-eslint/parser@8.6.0':
+ resolution: {integrity: sha512-eQcbCuA2Vmw45iGfcyG4y6rS7BhWfz9MQuk409WD47qMM+bKCGQWXxvoOs1DUp+T7UBMTtRTVT+kXr7Sh4O9Ow==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
@@ -866,26 +842,12 @@ packages:
typescript:
optional: true
- '@typescript-eslint/scope-manager@7.2.0':
- resolution: {integrity: sha512-Qh976RbQM/fYtjx9hs4XkayYujB/aPwglw2choHmf3zBjB4qOywWSdt9+KLRdHubGcoSwBnXUH2sR3hkyaERRg==}
- engines: {node: ^16.0.0 || >=18.0.0}
-
- '@typescript-eslint/scope-manager@8.5.0':
- resolution: {integrity: sha512-06JOQ9Qgj33yvBEx6tpC8ecP9o860rsR22hWMEd12WcTRrfaFgHr2RB/CA/B+7BMhHkXT4chg2MyboGdFGawYg==}
+ '@typescript-eslint/scope-manager@8.6.0':
+ resolution: {integrity: sha512-ZuoutoS5y9UOxKvpc/GkvF4cuEmpokda4wRg64JEia27wX+PysIE9q+lzDtlHHgblwUWwo5/Qn+/WyTUvDwBHw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/type-utils@7.2.0':
- resolution: {integrity: sha512-xHi51adBHo9O9330J8GQYQwrKBqbIPJGZZVQTHHmy200hvkLZFWJIFtAG/7IYTWUyun6DE6w5InDReePJYJlJA==}
- engines: {node: ^16.0.0 || >=18.0.0}
- peerDependencies:
- eslint: ^8.56.0
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
-
- '@typescript-eslint/type-utils@8.5.0':
- resolution: {integrity: sha512-N1K8Ix+lUM+cIDhL2uekVn/ZD7TZW+9/rwz8DclQpcQ9rk4sIL5CAlBC0CugWKREmDjBzI/kQqU4wkg46jWLYA==}
+ '@typescript-eslint/type-utils@8.6.0':
+ resolution: {integrity: sha512-dtePl4gsuenXVwC7dVNlb4mGDcKjDT/Ropsk4za/ouMBPplCLyznIaR+W65mvCvsyS97dymoBRrioEXI7k0XIg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '*'
@@ -893,25 +855,12 @@ packages:
typescript:
optional: true
- '@typescript-eslint/types@7.2.0':
- resolution: {integrity: sha512-XFtUHPI/abFhm4cbCDc5Ykc8npOKBSJePY3a3s+lwumt7XWJuzP5cZcfZ610MIPHjQjNsOLlYK8ASPaNG8UiyA==}
- engines: {node: ^16.0.0 || >=18.0.0}
-
- '@typescript-eslint/types@8.5.0':
- resolution: {integrity: sha512-qjkormnQS5wF9pjSi6q60bKUHH44j2APxfh9TQRXK8wbYVeDYYdYJGIROL87LGZZ2gz3Rbmjc736qyL8deVtdw==}
+ '@typescript-eslint/types@8.6.0':
+ resolution: {integrity: sha512-rojqFZGd4MQxw33SrOy09qIDS8WEldM8JWtKQLAjf/X5mGSeEFh5ixQlxssMNyPslVIk9yzWqXCsV2eFhYrYUw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/typescript-estree@7.2.0':
- resolution: {integrity: sha512-cyxS5WQQCoBwSakpMrvMXuMDEbhOo9bNHHrNcEWis6XHx6KF518tkF1wBvKIn/tpq5ZpUYK7Bdklu8qY0MsFIA==}
- engines: {node: ^16.0.0 || >=18.0.0}
- peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
-
- '@typescript-eslint/typescript-estree@8.5.0':
- resolution: {integrity: sha512-vEG2Sf9P8BPQ+d0pxdfndw3xIXaoSjliG0/Ejk7UggByZPKXmJmw3GW5jV2gHNQNawBUyfahoSiCFVov0Ruf7Q==}
+ '@typescript-eslint/typescript-estree@8.6.0':
+ resolution: {integrity: sha512-MOVAzsKJIPIlLK239l5s06YXjNqpKTVhBVDnqUumQJja5+Y94V3+4VUFRA0G60y2jNnTVwRCkhyGQpavfsbq/g==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '*'
@@ -919,24 +868,14 @@ packages:
typescript:
optional: true
- '@typescript-eslint/utils@7.2.0':
- resolution: {integrity: sha512-YfHpnMAGb1Eekpm3XRK8hcMwGLGsnT6L+7b2XyRv6ouDuJU1tZir1GS2i0+VXRatMwSI1/UfcyPe53ADkU+IuA==}
- engines: {node: ^16.0.0 || >=18.0.0}
- peerDependencies:
- eslint: ^8.56.0
-
- '@typescript-eslint/utils@8.5.0':
- resolution: {integrity: sha512-6yyGYVL0e+VzGYp60wvkBHiqDWOpT63pdMV2CVG4LVDd5uR6q1qQN/7LafBZtAtNIn/mqXjsSeS5ggv/P0iECw==}
+ '@typescript-eslint/utils@8.6.0':
+ resolution: {integrity: sha512-eNp9cWnYf36NaOVjkEUznf6fEgVy1TWpE0o52e4wtojjBx7D1UV2WAWGzR+8Y5lVFtpMLPwNbC67T83DWSph4A==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- '@typescript-eslint/visitor-keys@7.2.0':
- resolution: {integrity: sha512-c6EIQRHhcpl6+tO8EMR+kjkkV+ugUNXOmeASA1rlzkd8EPIriavpWoiEz1HR/VLhbVIdhqnV6E7JZm00cBDx2A==}
- engines: {node: ^16.0.0 || >=18.0.0}
-
- '@typescript-eslint/visitor-keys@8.5.0':
- resolution: {integrity: sha512-yTPqMnbAZJNy2Xq2XU8AdtOW9tJIr+UQb64aXB9f3B1498Zx9JorVgFJcZpEc9UBuCCrdzKID2RGAMkYcDtZOw==}
+ '@typescript-eslint/visitor-keys@8.6.0':
+ resolution: {integrity: sha512-wapVFfZg9H0qOYh4grNVQiMklJGluQrOUiOhYRrQWhx7BY/+I1IYb8BczWNbbUpO+pqy0rDciv3lQH5E1bCLrg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@ungap/structured-clone@1.2.0':
@@ -999,10 +938,6 @@ packages:
resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==}
engines: {node: '>= 0.4'}
- array-union@2.1.0:
- resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
- engines: {node: '>=8'}
-
array.prototype.findlast@1.2.5:
resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==}
engines: {node: '>= 0.4'}
@@ -1235,10 +1170,6 @@ packages:
didyoumean@1.2.2:
resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
- dir-glob@3.0.1:
- resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
- engines: {node: '>=8'}
-
dlv@1.1.3:
resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
@@ -1412,8 +1343,8 @@ packages:
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
engines: {node: '>=10'}
- eslint-config-next@14.2.11:
- resolution: {integrity: sha512-gGIoBoHCJuLn6vaV1Ke8UurVvgb7JjQv6oRlWmI6RAAxz7KwJOYxxm2blctavA0a3eofbE9TdgKvvTb2G55OHQ==}
+ eslint-config-next@14.2.12:
+ resolution: {integrity: sha512-fzUIlF6Ng1cUFFd013wn9H3YhKe3vV/cZBC0Ec9S64q/wGoTq0HlASA7WgiOwDAISSbzkLprInLiIMu6U8bqEw==}
peerDependencies:
eslint: ^7.23.0 || ^8.0.0
typescript: '>=3.3.1'
@@ -1499,8 +1430,8 @@ packages:
resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- eslint@8.57.0:
- resolution: {integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==}
+ eslint@8.57.1:
+ resolution: {integrity: sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
hasBin: true
@@ -1643,10 +1574,6 @@ packages:
resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==}
engines: {node: '>= 0.4'}
- globby@11.1.0:
- resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
- engines: {node: '>=10'}
-
gopd@1.0.1:
resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
@@ -1959,10 +1886,6 @@ packages:
minimatch@3.1.2:
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
- minimatch@9.0.3:
- resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==}
- engines: {node: '>=16 || 14 >=14.17'}
-
minimatch@9.0.5:
resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
engines: {node: '>=16 || 14 >=14.17'}
@@ -1994,8 +1917,8 @@ packages:
react: ^16.8 || ^17 || ^18
react-dom: ^16.8 || ^17 || ^18
- next@14.2.11:
- resolution: {integrity: sha512-8MDFqHBhdmR2wdfaWc8+lW3A/hppFe1ggQ9vgIu/g2/2QEMYJrPoQP6b+VNk56gIug/bStysAmrpUKtj3XN8Bw==}
+ next@14.2.12:
+ resolution: {integrity: sha512-cDOtUSIeoOvt1skKNihdExWMTybx3exnvbFbb9ecZDIxlvIbREQzt9A5Km3Zn3PfU+IFjyYGsHS+lN9VInAGKA==}
engines: {node: '>=18.17.0'}
hasBin: true
peerDependencies:
@@ -2108,10 +2031,6 @@ packages:
resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
engines: {node: '>=16 || 14 >=14.18'}
- path-type@4.0.0:
- resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
- engines: {node: '>=8'}
-
picocolors@1.1.0:
resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==}
@@ -2172,8 +2091,8 @@ packages:
resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
engines: {node: ^10 || ^12 || >=14}
- postcss@8.4.45:
- resolution: {integrity: sha512-7KTLTdzdZZYscUc65XmjFiB73vBhBfbPztCYdUNvlaso9PrzjzcmjqBPR0lNGkcVlcO4BjiO5rK/qNz+XAen1Q==}
+ postcss@8.4.47:
+ resolution: {integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==}
engines: {node: ^10 || ^12 || >=14}
postgres@3.4.4:
@@ -2398,10 +2317,6 @@ packages:
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
engines: {node: '>=14'}
- slash@3.0.0:
- resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
- engines: {node: '>=8'}
-
snake-case@3.0.4:
resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==}
@@ -2523,8 +2438,8 @@ packages:
peerDependencies:
tailwindcss: '>=3.0.0 || insiders'
- tailwindcss@3.4.11:
- resolution: {integrity: sha512-qhEuBcLemjSJk5ajccN9xJFtM/h0AVCPaA6C92jNP+M2J8kX+eMJHI7R2HFKUvvAsMpcfLILMCFYSeDwpMmlUg==}
+ tailwindcss@3.4.12:
+ resolution: {integrity: sha512-Htf/gHj2+soPb9UayUNci/Ja3d8pTmu9ONTfh4QY8r3MATTZOzmv6UYWF7ZwikEIC8okpfqmGqrmDehua8mF8w==}
engines: {node: '>=14.0.0'}
hasBin: true
@@ -2688,10 +2603,10 @@ snapshots:
'@alloc/quick-lru@5.2.0': {}
- '@clerk/backend@1.11.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@clerk/backend@1.13.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@clerk/shared': 2.7.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@clerk/types': 4.20.1
+ '@clerk/shared': 2.8.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@clerk/types': 4.21.0
cookie: 0.5.0
snakecase-keys: 5.4.4
tslib: 2.4.1
@@ -2699,30 +2614,30 @@ snapshots:
- react
- react-dom
- '@clerk/clerk-react@5.8.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@clerk/clerk-react@5.9.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@clerk/shared': 2.7.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@clerk/types': 4.20.1
+ '@clerk/shared': 2.8.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@clerk/types': 4.21.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
tslib: 2.4.1
- '@clerk/nextjs@5.5.2(next@14.2.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@clerk/nextjs@5.6.0(next@14.2.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@clerk/backend': 1.11.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@clerk/clerk-react': 5.8.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@clerk/shared': 2.7.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@clerk/types': 4.20.1
+ '@clerk/backend': 1.13.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@clerk/clerk-react': 5.9.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@clerk/shared': 2.8.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@clerk/types': 4.21.0
crypto-js: 4.2.0
- next: 14.2.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ next: 14.2.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
server-only: 0.0.1
tslib: 2.4.1
- '@clerk/shared@2.7.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@clerk/shared@2.8.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@clerk/types': 4.20.1
+ '@clerk/types': 4.21.0
glob-to-regexp: 0.4.1
js-cookie: 3.0.5
std-env: 3.7.0
@@ -2731,7 +2646,7 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@clerk/types@4.20.1':
+ '@clerk/types@4.21.0':
dependencies:
csstype: 3.1.1
@@ -2882,12 +2797,12 @@ snapshots:
'@esbuild/win32-x64@0.19.12':
optional: true
- '@eslint-community/eslint-utils@4.4.0(eslint@8.57.0)':
+ '@eslint-community/eslint-utils@4.4.0(eslint@8.57.1)':
dependencies:
- eslint: 8.57.0
+ eslint: 8.57.1
eslint-visitor-keys: 3.4.3
- '@eslint-community/regexpp@4.11.0': {}
+ '@eslint-community/regexpp@4.11.1': {}
'@eslint/eslintrc@2.1.4':
dependencies:
@@ -2903,9 +2818,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@eslint/js@8.57.0': {}
+ '@eslint/js@8.57.1': {}
- '@humanwhocodes/config-array@0.11.14':
+ '@humanwhocodes/config-array@0.13.0':
dependencies:
'@humanwhocodes/object-schema': 2.0.3
debug: 4.3.7
@@ -2943,37 +2858,37 @@ snapshots:
'@jridgewell/resolve-uri': 3.1.2
'@jridgewell/sourcemap-codec': 1.5.0
- '@next/env@14.2.11': {}
+ '@next/env@14.2.12': {}
- '@next/eslint-plugin-next@14.2.11':
+ '@next/eslint-plugin-next@14.2.12':
dependencies:
glob: 10.3.10
- '@next/swc-darwin-arm64@14.2.11':
+ '@next/swc-darwin-arm64@14.2.12':
optional: true
- '@next/swc-darwin-x64@14.2.11':
+ '@next/swc-darwin-x64@14.2.12':
optional: true
- '@next/swc-linux-arm64-gnu@14.2.11':
+ '@next/swc-linux-arm64-gnu@14.2.12':
optional: true
- '@next/swc-linux-arm64-musl@14.2.11':
+ '@next/swc-linux-arm64-musl@14.2.12':
optional: true
- '@next/swc-linux-x64-gnu@14.2.11':
+ '@next/swc-linux-x64-gnu@14.2.12':
optional: true
- '@next/swc-linux-x64-musl@14.2.11':
+ '@next/swc-linux-x64-musl@14.2.12':
optional: true
- '@next/swc-win32-arm64-msvc@14.2.11':
+ '@next/swc-win32-arm64-msvc@14.2.12':
optional: true
- '@next/swc-win32-ia32-msvc@14.2.11':
+ '@next/swc-win32-ia32-msvc@14.2.12':
optional: true
- '@next/swc-win32-x64-msvc@14.2.11':
+ '@next/swc-win32-x64-msvc@14.2.12':
optional: true
'@nodelib/fs.scandir@2.1.5':
@@ -2995,163 +2910,163 @@ snapshots:
'@radix-ui/primitive@1.1.0': {}
- '@radix-ui/react-avatar@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-avatar@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@radix-ui/react-context': 1.1.0(@types/react@18.3.5)(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.5)(react@18.3.1)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.3.7)(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.7)(react@18.3.1)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.7)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.5
+ '@types/react': 18.3.7
'@types/react-dom': 18.3.0
- '@radix-ui/react-compose-refs@1.1.0(@types/react@18.3.5)(react@18.3.1)':
+ '@radix-ui/react-compose-refs@1.1.0(@types/react@18.3.7)(react@18.3.1)':
dependencies:
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.5
+ '@types/react': 18.3.7
- '@radix-ui/react-context@1.1.0(@types/react@18.3.5)(react@18.3.1)':
+ '@radix-ui/react-context@1.1.0(@types/react@18.3.7)(react@18.3.1)':
dependencies:
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.5
+ '@types/react': 18.3.7
- '@radix-ui/react-dialog@1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-dialog@1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.5)(react@18.3.1)
- '@radix-ui/react-context': 1.1.0(@types/react@18.3.5)(react@18.3.1)
- '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-focus-guards': 1.1.0(@types/react@18.3.5)(react@18.3.1)
- '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.5)(react@18.3.1)
- '@radix-ui/react-portal': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-slot': 1.1.0(@types/react@18.3.5)(react@18.3.1)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.7)(react@18.3.1)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.3.7)(react@18.3.1)
+ '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-focus-guards': 1.1.0(@types/react@18.3.7)(react@18.3.1)
+ '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-id': 1.1.0(@types/react@18.3.7)(react@18.3.1)
+ '@radix-ui/react-portal': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-slot': 1.1.0(@types/react@18.3.7)(react@18.3.1)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.7)(react@18.3.1)
aria-hidden: 1.2.4
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- react-remove-scroll: 2.5.7(@types/react@18.3.5)(react@18.3.1)
+ react-remove-scroll: 2.5.7(@types/react@18.3.7)(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.5
+ '@types/react': 18.3.7
'@types/react-dom': 18.3.0
- '@radix-ui/react-dismissable-layer@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-dismissable-layer@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.5)(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.5)(react@18.3.1)
- '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.7)(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.7)(react@18.3.1)
+ '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@18.3.7)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.5
+ '@types/react': 18.3.7
'@types/react-dom': 18.3.0
- '@radix-ui/react-focus-guards@1.1.0(@types/react@18.3.5)(react@18.3.1)':
+ '@radix-ui/react-focus-guards@1.1.0(@types/react@18.3.7)(react@18.3.1)':
dependencies:
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.5
+ '@types/react': 18.3.7
- '@radix-ui/react-focus-scope@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-focus-scope@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.5)(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.7)(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.7)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.5
+ '@types/react': 18.3.7
'@types/react-dom': 18.3.0
'@radix-ui/react-icons@1.3.0(react@18.3.1)':
dependencies:
react: 18.3.1
- '@radix-ui/react-id@1.1.0(@types/react@18.3.5)(react@18.3.1)':
+ '@radix-ui/react-id@1.1.0(@types/react@18.3.7)(react@18.3.1)':
dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.7)(react@18.3.1)
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.5
+ '@types/react': 18.3.7
- '@radix-ui/react-portal@1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-portal@1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.7)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.5
+ '@types/react': 18.3.7
'@types/react-dom': 18.3.0
- '@radix-ui/react-presence@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-presence@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.5)(react@18.3.1)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.7)(react@18.3.1)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.7)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.5
+ '@types/react': 18.3.7
'@types/react-dom': 18.3.0
- '@radix-ui/react-primitive@2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-primitive@2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@radix-ui/react-slot': 1.1.0(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-slot': 1.1.0(@types/react@18.3.7)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.5
+ '@types/react': 18.3.7
'@types/react-dom': 18.3.0
- '@radix-ui/react-separator@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-separator@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.5
+ '@types/react': 18.3.7
'@types/react-dom': 18.3.0
- '@radix-ui/react-slot@1.1.0(@types/react@18.3.5)(react@18.3.1)':
+ '@radix-ui/react-slot@1.1.0(@types/react@18.3.7)(react@18.3.1)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.7)(react@18.3.1)
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.5
+ '@types/react': 18.3.7
- '@radix-ui/react-use-callback-ref@1.1.0(@types/react@18.3.5)(react@18.3.1)':
+ '@radix-ui/react-use-callback-ref@1.1.0(@types/react@18.3.7)(react@18.3.1)':
dependencies:
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.5
+ '@types/react': 18.3.7
- '@radix-ui/react-use-controllable-state@1.1.0(@types/react@18.3.5)(react@18.3.1)':
+ '@radix-ui/react-use-controllable-state@1.1.0(@types/react@18.3.7)(react@18.3.1)':
dependencies:
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.7)(react@18.3.1)
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.5
+ '@types/react': 18.3.7
- '@radix-ui/react-use-escape-keydown@1.1.0(@types/react@18.3.5)(react@18.3.1)':
+ '@radix-ui/react-use-escape-keydown@1.1.0(@types/react@18.3.7)(react@18.3.1)':
dependencies:
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.7)(react@18.3.1)
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.5
+ '@types/react': 18.3.7
- '@radix-ui/react-use-layout-effect@1.1.0(@types/react@18.3.5)(react@18.3.1)':
+ '@radix-ui/react-use-layout-effect@1.1.0(@types/react@18.3.7)(react@18.3.1)':
dependencies:
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.5
+ '@types/react': 18.3.7
'@rtsao/scc@1.1.0': {}
@@ -3179,10 +3094,10 @@ snapshots:
'@types/eslint@8.56.12':
dependencies:
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
'@types/json-schema': 7.0.15
- '@types/estree@1.0.5': {}
+ '@types/estree@1.0.6': {}
'@types/json-schema@7.0.15': {}
@@ -3192,48 +3107,26 @@ snapshots:
dependencies:
undici-types: 6.19.8
- '@types/prop-types@15.7.12': {}
+ '@types/prop-types@15.7.13': {}
'@types/react-dom@18.3.0':
dependencies:
- '@types/react': 18.3.5
+ '@types/react': 18.3.7
- '@types/react@18.3.5':
+ '@types/react@18.3.7':
dependencies:
- '@types/prop-types': 15.7.12
+ '@types/prop-types': 15.7.13
csstype: 3.1.3
- '@types/semver@7.5.8': {}
-
- '@typescript-eslint/eslint-plugin@7.2.0(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.2))(eslint@8.57.0)(typescript@5.6.2)':
+ '@typescript-eslint/eslint-plugin@8.6.0(@typescript-eslint/parser@8.6.0(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1)(typescript@5.6.2)':
dependencies:
- '@eslint-community/regexpp': 4.11.0
- '@typescript-eslint/parser': 7.2.0(eslint@8.57.0)(typescript@5.6.2)
- '@typescript-eslint/scope-manager': 7.2.0
- '@typescript-eslint/type-utils': 7.2.0(eslint@8.57.0)(typescript@5.6.2)
- '@typescript-eslint/utils': 7.2.0(eslint@8.57.0)(typescript@5.6.2)
- '@typescript-eslint/visitor-keys': 7.2.0
- debug: 4.3.7
- eslint: 8.57.0
- graphemer: 1.4.0
- ignore: 5.3.2
- natural-compare: 1.4.0
- semver: 7.6.3
- ts-api-utils: 1.3.0(typescript@5.6.2)
- optionalDependencies:
- typescript: 5.6.2
- transitivePeerDependencies:
- - supports-color
-
- '@typescript-eslint/eslint-plugin@8.5.0(@typescript-eslint/parser@8.5.0(eslint@8.57.0)(typescript@5.6.2))(eslint@8.57.0)(typescript@5.6.2)':
- dependencies:
- '@eslint-community/regexpp': 4.11.0
- '@typescript-eslint/parser': 8.5.0(eslint@8.57.0)(typescript@5.6.2)
- '@typescript-eslint/scope-manager': 8.5.0
- '@typescript-eslint/type-utils': 8.5.0(eslint@8.57.0)(typescript@5.6.2)
- '@typescript-eslint/utils': 8.5.0(eslint@8.57.0)(typescript@5.6.2)
- '@typescript-eslint/visitor-keys': 8.5.0
- eslint: 8.57.0
+ '@eslint-community/regexpp': 4.11.1
+ '@typescript-eslint/parser': 8.6.0(eslint@8.57.1)(typescript@5.6.2)
+ '@typescript-eslint/scope-manager': 8.6.0
+ '@typescript-eslint/type-utils': 8.6.0(eslint@8.57.1)(typescript@5.6.2)
+ '@typescript-eslint/utils': 8.6.0(eslint@8.57.1)(typescript@5.6.2)
+ '@typescript-eslint/visitor-keys': 8.6.0
+ eslint: 8.57.1
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
@@ -3243,58 +3136,28 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.2)':
+ '@typescript-eslint/parser@8.6.0(eslint@8.57.1)(typescript@5.6.2)':
dependencies:
- '@typescript-eslint/scope-manager': 7.2.0
- '@typescript-eslint/types': 7.2.0
- '@typescript-eslint/typescript-estree': 7.2.0(typescript@5.6.2)
- '@typescript-eslint/visitor-keys': 7.2.0
+ '@typescript-eslint/scope-manager': 8.6.0
+ '@typescript-eslint/types': 8.6.0
+ '@typescript-eslint/typescript-estree': 8.6.0(typescript@5.6.2)
+ '@typescript-eslint/visitor-keys': 8.6.0
debug: 4.3.7
- eslint: 8.57.0
+ eslint: 8.57.1
optionalDependencies:
typescript: 5.6.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.5.0(eslint@8.57.0)(typescript@5.6.2)':
+ '@typescript-eslint/scope-manager@8.6.0':
dependencies:
- '@typescript-eslint/scope-manager': 8.5.0
- '@typescript-eslint/types': 8.5.0
- '@typescript-eslint/typescript-estree': 8.5.0(typescript@5.6.2)
- '@typescript-eslint/visitor-keys': 8.5.0
- debug: 4.3.7
- eslint: 8.57.0
- optionalDependencies:
- typescript: 5.6.2
- transitivePeerDependencies:
- - supports-color
+ '@typescript-eslint/types': 8.6.0
+ '@typescript-eslint/visitor-keys': 8.6.0
- '@typescript-eslint/scope-manager@7.2.0':
+ '@typescript-eslint/type-utils@8.6.0(eslint@8.57.1)(typescript@5.6.2)':
dependencies:
- '@typescript-eslint/types': 7.2.0
- '@typescript-eslint/visitor-keys': 7.2.0
-
- '@typescript-eslint/scope-manager@8.5.0':
- dependencies:
- '@typescript-eslint/types': 8.5.0
- '@typescript-eslint/visitor-keys': 8.5.0
-
- '@typescript-eslint/type-utils@7.2.0(eslint@8.57.0)(typescript@5.6.2)':
- dependencies:
- '@typescript-eslint/typescript-estree': 7.2.0(typescript@5.6.2)
- '@typescript-eslint/utils': 7.2.0(eslint@8.57.0)(typescript@5.6.2)
- debug: 4.3.7
- eslint: 8.57.0
- ts-api-utils: 1.3.0(typescript@5.6.2)
- optionalDependencies:
- typescript: 5.6.2
- transitivePeerDependencies:
- - supports-color
-
- '@typescript-eslint/type-utils@8.5.0(eslint@8.57.0)(typescript@5.6.2)':
- dependencies:
- '@typescript-eslint/typescript-estree': 8.5.0(typescript@5.6.2)
- '@typescript-eslint/utils': 8.5.0(eslint@8.57.0)(typescript@5.6.2)
+ '@typescript-eslint/typescript-estree': 8.6.0(typescript@5.6.2)
+ '@typescript-eslint/utils': 8.6.0(eslint@8.57.1)(typescript@5.6.2)
debug: 4.3.7
ts-api-utils: 1.3.0(typescript@5.6.2)
optionalDependencies:
@@ -3303,29 +3166,12 @@ snapshots:
- eslint
- supports-color
- '@typescript-eslint/types@7.2.0': {}
+ '@typescript-eslint/types@8.6.0': {}
- '@typescript-eslint/types@8.5.0': {}
-
- '@typescript-eslint/typescript-estree@7.2.0(typescript@5.6.2)':
+ '@typescript-eslint/typescript-estree@8.6.0(typescript@5.6.2)':
dependencies:
- '@typescript-eslint/types': 7.2.0
- '@typescript-eslint/visitor-keys': 7.2.0
- debug: 4.3.7
- globby: 11.1.0
- is-glob: 4.0.3
- minimatch: 9.0.3
- semver: 7.6.3
- ts-api-utils: 1.3.0(typescript@5.6.2)
- optionalDependencies:
- typescript: 5.6.2
- transitivePeerDependencies:
- - supports-color
-
- '@typescript-eslint/typescript-estree@8.5.0(typescript@5.6.2)':
- dependencies:
- '@typescript-eslint/types': 8.5.0
- '@typescript-eslint/visitor-keys': 8.5.0
+ '@typescript-eslint/types': 8.6.0
+ '@typescript-eslint/visitor-keys': 8.6.0
debug: 4.3.7
fast-glob: 3.3.2
is-glob: 4.0.3
@@ -3337,39 +3183,20 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@7.2.0(eslint@8.57.0)(typescript@5.6.2)':
+ '@typescript-eslint/utils@8.6.0(eslint@8.57.1)(typescript@5.6.2)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
- '@types/json-schema': 7.0.15
- '@types/semver': 7.5.8
- '@typescript-eslint/scope-manager': 7.2.0
- '@typescript-eslint/types': 7.2.0
- '@typescript-eslint/typescript-estree': 7.2.0(typescript@5.6.2)
- eslint: 8.57.0
- semver: 7.6.3
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1)
+ '@typescript-eslint/scope-manager': 8.6.0
+ '@typescript-eslint/types': 8.6.0
+ '@typescript-eslint/typescript-estree': 8.6.0(typescript@5.6.2)
+ eslint: 8.57.1
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/utils@8.5.0(eslint@8.57.0)(typescript@5.6.2)':
+ '@typescript-eslint/visitor-keys@8.6.0':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
- '@typescript-eslint/scope-manager': 8.5.0
- '@typescript-eslint/types': 8.5.0
- '@typescript-eslint/typescript-estree': 8.5.0(typescript@5.6.2)
- eslint: 8.57.0
- transitivePeerDependencies:
- - supports-color
- - typescript
-
- '@typescript-eslint/visitor-keys@7.2.0':
- dependencies:
- '@typescript-eslint/types': 7.2.0
- eslint-visitor-keys: 3.4.3
-
- '@typescript-eslint/visitor-keys@8.5.0':
- dependencies:
- '@typescript-eslint/types': 8.5.0
+ '@typescript-eslint/types': 8.6.0
eslint-visitor-keys: 3.4.3
'@ungap/structured-clone@1.2.0': {}
@@ -3430,8 +3257,6 @@ snapshots:
get-intrinsic: 1.2.4
is-string: 1.0.7
- array-union@2.1.0: {}
-
array.prototype.findlast@1.2.5:
dependencies:
call-bind: 1.0.7
@@ -3681,10 +3506,6 @@ snapshots:
didyoumean@1.2.2: {}
- dir-glob@3.0.1:
- dependencies:
- path-type: 4.0.0
-
dlv@1.1.3: {}
doctrine@2.1.0:
@@ -3698,7 +3519,7 @@ snapshots:
dot-case@3.0.4:
dependencies:
no-case: 3.0.4
- tslib: 2.7.0
+ tslib: 2.4.1
drizzle-kit@0.24.2:
dependencies:
@@ -3709,9 +3530,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- drizzle-orm@0.33.0(@types/react@18.3.5)(postgres@3.4.4)(react@18.3.1):
+ drizzle-orm@0.33.0(@types/react@18.3.7)(postgres@3.4.4)(react@18.3.1):
optionalDependencies:
- '@types/react': 18.3.5
+ '@types/react': 18.3.7
postgres: 3.4.4
react: 18.3.1
@@ -3890,19 +3711,19 @@ snapshots:
escape-string-regexp@4.0.0: {}
- eslint-config-next@14.2.11(eslint@8.57.0)(typescript@5.6.2):
+ eslint-config-next@14.2.12(eslint@8.57.1)(typescript@5.6.2):
dependencies:
- '@next/eslint-plugin-next': 14.2.11
+ '@next/eslint-plugin-next': 14.2.12
'@rushstack/eslint-patch': 1.10.4
- '@typescript-eslint/eslint-plugin': 7.2.0(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.2))(eslint@8.57.0)(typescript@5.6.2)
- '@typescript-eslint/parser': 7.2.0(eslint@8.57.0)(typescript@5.6.2)
- eslint: 8.57.0
+ '@typescript-eslint/eslint-plugin': 8.6.0(@typescript-eslint/parser@8.6.0(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1)(typescript@5.6.2)
+ '@typescript-eslint/parser': 8.6.0(eslint@8.57.1)(typescript@5.6.2)
+ eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.30.0)(eslint@8.57.0)
- eslint-plugin-import: 2.30.0(@typescript-eslint/parser@8.5.0(eslint@8.57.0)(typescript@5.6.2))(eslint@8.57.0)
- eslint-plugin-jsx-a11y: 6.10.0(eslint@8.57.0)
- eslint-plugin-react: 7.36.1(eslint@8.57.0)
- eslint-plugin-react-hooks: 4.6.2(eslint@8.57.0)
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.6.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.30.0)(eslint@8.57.1)
+ eslint-plugin-import: 2.30.0(@typescript-eslint/parser@8.6.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1)
+ eslint-plugin-jsx-a11y: 6.10.0(eslint@8.57.1)
+ eslint-plugin-react: 7.36.1(eslint@8.57.1)
+ eslint-plugin-react-hooks: 4.6.2(eslint@8.57.1)
optionalDependencies:
typescript: 5.6.2
transitivePeerDependencies:
@@ -3918,51 +3739,41 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.30.0)(eslint@8.57.0):
+ eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.6.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.30.0)(eslint@8.57.1):
dependencies:
'@nolyfill/is-core-module': 1.0.39
debug: 4.3.7
enhanced-resolve: 5.17.1
- eslint: 8.57.0
- eslint-module-utils: 2.11.0(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.30.0)(eslint@8.57.0))(eslint@8.57.0)
+ eslint: 8.57.1
+ eslint-module-utils: 2.11.0(@typescript-eslint/parser@8.6.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.6.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.30.0)(eslint@8.57.1))(eslint@8.57.1)
fast-glob: 3.3.2
get-tsconfig: 4.8.1
is-bun-module: 1.2.1
is-glob: 4.0.3
optionalDependencies:
- eslint-plugin-import: 2.30.0(@typescript-eslint/parser@8.5.0(eslint@8.57.0)(typescript@5.6.2))(eslint@8.57.0)
+ eslint-plugin-import: 2.30.0(@typescript-eslint/parser@8.6.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1)
transitivePeerDependencies:
- '@typescript-eslint/parser'
- eslint-import-resolver-node
- eslint-import-resolver-webpack
- supports-color
- eslint-module-utils@2.11.0(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.30.0)(eslint@8.57.0))(eslint@8.57.0):
+ eslint-module-utils@2.11.0(@typescript-eslint/parser@8.6.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.6.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.30.0)(eslint@8.57.1))(eslint@8.57.1):
dependencies:
debug: 3.2.7
optionalDependencies:
- '@typescript-eslint/parser': 7.2.0(eslint@8.57.0)(typescript@5.6.2)
- eslint: 8.57.0
+ '@typescript-eslint/parser': 8.6.0(eslint@8.57.1)(typescript@5.6.2)
+ eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.30.0)(eslint@8.57.0)
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.6.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.30.0)(eslint@8.57.1)
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.11.0(@typescript-eslint/parser@8.5.0(eslint@8.57.0)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0):
+ eslint-plugin-drizzle@0.2.3(eslint@8.57.1):
dependencies:
- debug: 3.2.7
- optionalDependencies:
- '@typescript-eslint/parser': 8.5.0(eslint@8.57.0)(typescript@5.6.2)
- eslint: 8.57.0
- eslint-import-resolver-node: 0.3.9
- transitivePeerDependencies:
- - supports-color
+ eslint: 8.57.1
- eslint-plugin-drizzle@0.2.3(eslint@8.57.0):
- dependencies:
- eslint: 8.57.0
-
- eslint-plugin-import@2.30.0(@typescript-eslint/parser@8.5.0(eslint@8.57.0)(typescript@5.6.2))(eslint@8.57.0):
+ eslint-plugin-import@2.30.0(@typescript-eslint/parser@8.6.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: 3.1.8
@@ -3971,9 +3782,9 @@ snapshots:
array.prototype.flatmap: 1.3.2
debug: 3.2.7
doctrine: 2.1.0
- eslint: 8.57.0
+ eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.11.0(@typescript-eslint/parser@8.5.0(eslint@8.57.0)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0)
+ eslint-module-utils: 2.11.0(@typescript-eslint/parser@8.6.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.6.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.30.0)(eslint@8.57.1))(eslint@8.57.1)
hasown: 2.0.2
is-core-module: 2.15.1
is-glob: 4.0.3
@@ -3984,13 +3795,13 @@ snapshots:
semver: 6.3.1
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 8.5.0(eslint@8.57.0)(typescript@5.6.2)
+ '@typescript-eslint/parser': 8.6.0(eslint@8.57.1)(typescript@5.6.2)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-jsx-a11y@6.10.0(eslint@8.57.0):
+ eslint-plugin-jsx-a11y@6.10.0(eslint@8.57.1):
dependencies:
aria-query: 5.1.3
array-includes: 3.1.8
@@ -4001,7 +3812,7 @@ snapshots:
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
es-iterator-helpers: 1.0.19
- eslint: 8.57.0
+ eslint: 8.57.1
hasown: 2.0.2
jsx-ast-utils: 3.3.5
language-tags: 1.0.9
@@ -4010,11 +3821,11 @@ snapshots:
safe-regex-test: 1.0.3
string.prototype.includes: 2.0.0
- eslint-plugin-react-hooks@4.6.2(eslint@8.57.0):
+ eslint-plugin-react-hooks@4.6.2(eslint@8.57.1):
dependencies:
- eslint: 8.57.0
+ eslint: 8.57.1
- eslint-plugin-react@7.36.1(eslint@8.57.0):
+ eslint-plugin-react@7.36.1(eslint@8.57.1):
dependencies:
array-includes: 3.1.8
array.prototype.findlast: 1.2.5
@@ -4022,7 +3833,7 @@ snapshots:
array.prototype.tosorted: 1.1.4
doctrine: 2.1.0
es-iterator-helpers: 1.0.19
- eslint: 8.57.0
+ eslint: 8.57.1
estraverse: 5.3.0
hasown: 2.0.2
jsx-ast-utils: 3.3.5
@@ -4043,13 +3854,13 @@ snapshots:
eslint-visitor-keys@3.4.3: {}
- eslint@8.57.0:
+ eslint@8.57.1:
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
- '@eslint-community/regexpp': 4.11.0
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1)
+ '@eslint-community/regexpp': 4.11.1
'@eslint/eslintrc': 2.1.4
- '@eslint/js': 8.57.0
- '@humanwhocodes/config-array': 0.11.14
+ '@eslint/js': 8.57.1
+ '@humanwhocodes/config-array': 0.13.0
'@humanwhocodes/module-importer': 1.0.1
'@nodelib/fs.walk': 1.2.8
'@ungap/structured-clone': 1.2.0
@@ -4176,9 +3987,9 @@ snapshots:
functions-have-names@1.2.3: {}
- geist@1.3.1(next@14.2.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1)):
+ geist@1.3.1(next@14.2.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1)):
dependencies:
- next: 14.2.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ next: 14.2.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
get-intrinsic@1.2.4:
dependencies:
@@ -4245,15 +4056,6 @@ snapshots:
define-properties: 1.2.1
gopd: 1.0.1
- globby@11.1.0:
- dependencies:
- array-union: 2.1.0
- dir-glob: 3.0.1
- fast-glob: 3.3.2
- ignore: 5.3.2
- merge2: 1.4.1
- slash: 3.0.0
-
gopd@1.0.1:
dependencies:
get-intrinsic: 1.2.4
@@ -4518,7 +4320,7 @@ snapshots:
lower-case@2.0.2:
dependencies:
- tslib: 2.7.0
+ tslib: 2.4.1
lru-cache@10.4.3: {}
@@ -4541,10 +4343,6 @@ snapshots:
dependencies:
brace-expansion: 1.1.11
- minimatch@9.0.3:
- dependencies:
- brace-expansion: 2.0.1
-
minimatch@9.0.5:
dependencies:
brace-expansion: 2.0.1
@@ -4570,9 +4368,9 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- next@14.2.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ next@14.2.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@next/env': 14.2.11
+ '@next/env': 14.2.12
'@swc/helpers': 0.5.5
busboy: 1.6.0
caniuse-lite: 1.0.30001660
@@ -4582,15 +4380,15 @@ snapshots:
react-dom: 18.3.1(react@18.3.1)
styled-jsx: 5.1.1(react@18.3.1)
optionalDependencies:
- '@next/swc-darwin-arm64': 14.2.11
- '@next/swc-darwin-x64': 14.2.11
- '@next/swc-linux-arm64-gnu': 14.2.11
- '@next/swc-linux-arm64-musl': 14.2.11
- '@next/swc-linux-x64-gnu': 14.2.11
- '@next/swc-linux-x64-musl': 14.2.11
- '@next/swc-win32-arm64-msvc': 14.2.11
- '@next/swc-win32-ia32-msvc': 14.2.11
- '@next/swc-win32-x64-msvc': 14.2.11
+ '@next/swc-darwin-arm64': 14.2.12
+ '@next/swc-darwin-x64': 14.2.12
+ '@next/swc-linux-arm64-gnu': 14.2.12
+ '@next/swc-linux-arm64-musl': 14.2.12
+ '@next/swc-linux-x64-gnu': 14.2.12
+ '@next/swc-linux-x64-musl': 14.2.12
+ '@next/swc-win32-arm64-msvc': 14.2.12
+ '@next/swc-win32-ia32-msvc': 14.2.12
+ '@next/swc-win32-x64-msvc': 14.2.12
transitivePeerDependencies:
- '@babel/core'
- babel-plugin-macros
@@ -4598,7 +4396,7 @@ snapshots:
no-case@3.0.4:
dependencies:
lower-case: 2.0.2
- tslib: 2.7.0
+ tslib: 2.4.1
node-uuid@1.4.8: {}
@@ -4691,8 +4489,6 @@ snapshots:
lru-cache: 10.4.3
minipass: 7.1.2
- path-type@4.0.0: {}
-
picocolors@1.1.0: {}
picomatch@2.3.1: {}
@@ -4703,28 +4499,28 @@ snapshots:
possible-typed-array-names@1.0.0: {}
- postcss-import@15.1.0(postcss@8.4.45):
+ postcss-import@15.1.0(postcss@8.4.47):
dependencies:
- postcss: 8.4.45
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
read-cache: 1.0.0
resolve: 1.22.8
- postcss-js@4.0.1(postcss@8.4.45):
+ postcss-js@4.0.1(postcss@8.4.47):
dependencies:
camelcase-css: 2.0.1
- postcss: 8.4.45
+ postcss: 8.4.47
- postcss-load-config@4.0.2(postcss@8.4.45):
+ postcss-load-config@4.0.2(postcss@8.4.47):
dependencies:
lilconfig: 3.1.2
yaml: 2.5.1
optionalDependencies:
- postcss: 8.4.45
+ postcss: 8.4.47
- postcss-nested@6.2.0(postcss@8.4.45):
+ postcss-nested@6.2.0(postcss@8.4.47):
dependencies:
- postcss: 8.4.45
+ postcss: 8.4.47
postcss-selector-parser: 6.1.2
postcss-selector-parser@6.1.2:
@@ -4740,7 +4536,7 @@ snapshots:
picocolors: 1.1.0
source-map-js: 1.2.1
- postcss@8.4.45:
+ postcss@8.4.47:
dependencies:
nanoid: 3.3.7
picocolors: 1.1.0
@@ -4780,33 +4576,33 @@ snapshots:
react-is@16.13.1: {}
- react-remove-scroll-bar@2.3.6(@types/react@18.3.5)(react@18.3.1):
+ react-remove-scroll-bar@2.3.6(@types/react@18.3.7)(react@18.3.1):
dependencies:
react: 18.3.1
- react-style-singleton: 2.2.1(@types/react@18.3.5)(react@18.3.1)
+ react-style-singleton: 2.2.1(@types/react@18.3.7)(react@18.3.1)
tslib: 2.7.0
optionalDependencies:
- '@types/react': 18.3.5
+ '@types/react': 18.3.7
- react-remove-scroll@2.5.7(@types/react@18.3.5)(react@18.3.1):
+ react-remove-scroll@2.5.7(@types/react@18.3.7)(react@18.3.1):
dependencies:
react: 18.3.1
- react-remove-scroll-bar: 2.3.6(@types/react@18.3.5)(react@18.3.1)
- react-style-singleton: 2.2.1(@types/react@18.3.5)(react@18.3.1)
+ react-remove-scroll-bar: 2.3.6(@types/react@18.3.7)(react@18.3.1)
+ react-style-singleton: 2.2.1(@types/react@18.3.7)(react@18.3.1)
tslib: 2.7.0
- use-callback-ref: 1.3.2(@types/react@18.3.5)(react@18.3.1)
- use-sidecar: 1.1.2(@types/react@18.3.5)(react@18.3.1)
+ use-callback-ref: 1.3.2(@types/react@18.3.7)(react@18.3.1)
+ use-sidecar: 1.1.2(@types/react@18.3.7)(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.5
+ '@types/react': 18.3.7
- react-style-singleton@2.2.1(@types/react@18.3.5)(react@18.3.1):
+ react-style-singleton@2.2.1(@types/react@18.3.7)(react@18.3.1):
dependencies:
get-nonce: 1.0.1
invariant: 2.2.4
react: 18.3.1
tslib: 2.7.0
optionalDependencies:
- '@types/react': 18.3.5
+ '@types/react': 18.3.7
react@18.3.1:
dependencies:
@@ -4932,12 +4728,10 @@ snapshots:
signal-exit@4.1.0: {}
- slash@3.0.0: {}
-
snake-case@3.0.4:
dependencies:
dot-case: 3.0.4
- tslib: 2.7.0
+ tslib: 2.4.1
snakecase-keys@5.4.4:
dependencies:
@@ -5065,11 +4859,11 @@ snapshots:
tailwind-merge@2.5.2: {}
- tailwindcss-animate@1.0.7(tailwindcss@3.4.11):
+ tailwindcss-animate@1.0.7(tailwindcss@3.4.12):
dependencies:
- tailwindcss: 3.4.11
+ tailwindcss: 3.4.12
- tailwindcss@3.4.11:
+ tailwindcss@3.4.12:
dependencies:
'@alloc/quick-lru': 5.2.0
arg: 5.0.2
@@ -5085,11 +4879,11 @@ snapshots:
normalize-path: 3.0.0
object-hash: 3.0.0
picocolors: 1.1.0
- postcss: 8.4.45
- postcss-import: 15.1.0(postcss@8.4.45)
- postcss-js: 4.0.1(postcss@8.4.45)
- postcss-load-config: 4.0.2(postcss@8.4.45)
- postcss-nested: 6.2.0(postcss@8.4.45)
+ postcss: 8.4.47
+ postcss-import: 15.1.0(postcss@8.4.47)
+ postcss-js: 4.0.1(postcss@8.4.47)
+ postcss-load-config: 4.0.2(postcss@8.4.47)
+ postcss-nested: 6.2.0(postcss@8.4.47)
postcss-selector-parser: 6.1.2
resolve: 1.22.8
sucrase: 3.35.0
@@ -5186,20 +4980,20 @@ snapshots:
dependencies:
punycode: 2.3.1
- use-callback-ref@1.3.2(@types/react@18.3.5)(react@18.3.1):
+ use-callback-ref@1.3.2(@types/react@18.3.7)(react@18.3.1):
dependencies:
react: 18.3.1
tslib: 2.7.0
optionalDependencies:
- '@types/react': 18.3.5
+ '@types/react': 18.3.7
- use-sidecar@1.1.2(@types/react@18.3.5)(react@18.3.1):
+ use-sidecar@1.1.2(@types/react@18.3.7)(react@18.3.1):
dependencies:
detect-node-es: 1.1.0
react: 18.3.1
tslib: 2.7.0
optionalDependencies:
- '@types/react': 18.3.5
+ '@types/react': 18.3.7
use-sync-external-store@1.2.2(react@18.3.1):
dependencies:
diff --git a/src/app/api/studies/route.ts b/src/app/api/studies/route.ts
new file mode 100644
index 0000000..f7d08c9
--- /dev/null
+++ b/src/app/api/studies/route.ts
@@ -0,0 +1,31 @@
+import { db } from "~/server/db";
+import { studies } from "~/server/db/schema";
+import { NextResponse } from "next/server";
+import { eq } from "drizzle-orm";
+
+export async function GET() {
+ const allStudies = await db.select().from(studies);
+ return NextResponse.json(allStudies);
+}
+
+export async function POST(request: Request) {
+ const { title, description } = await request.json();
+ const newStudy = await db.insert(studies).values({ title, description }).returning();
+ return NextResponse.json(newStudy[0]);
+}
+
+export async function PUT(request: Request) {
+ const { id, title, description } = await request.json();
+ const updatedStudy = await db
+ .update(studies)
+ .set({ title, description })
+ .where(eq(studies.id, id))
+ .returning();
+ return NextResponse.json(updatedStudy[0]);
+}
+
+export async function DELETE(request: Request) {
+ const { id } = await request.json();
+ await db.delete(studies).where(eq(studies.id, id));
+ return NextResponse.json({ message: "Study deleted" });
+}
\ No newline at end of file
diff --git a/src/app/dash/layout.tsx b/src/app/dash/layout.tsx
index 7bb35b2..f0a43f7 100644
--- a/src/app/dash/layout.tsx
+++ b/src/app/dash/layout.tsx
@@ -1,9 +1,15 @@
import { type PropsWithChildren } from "react"
import { Sidebar } from "~/components/sidebar"
-import { inter } from "../layout"
+import { Inter } from "next/font/google"
import "~/styles/globals.css"
+const inter = Inter({
+ subsets: ["latin"],
+ display: "swap",
+ variable: "--font-sans",
+})
+
export default function RootLayout({ children }: PropsWithChildren) {
return (
diff --git a/src/app/dash/page.tsx b/src/app/dash/page.tsx
index ed2f6ad..e66226f 100644
--- a/src/app/dash/page.tsx
+++ b/src/app/dash/page.tsx
@@ -1,5 +1,6 @@
import { Card, CardContent, CardHeader, CardTitle, CardDescription } from '~/components/ui/card';
import { Button } from '~/components/ui/button';
+import { Studies } from "~/components/Studies";
const HomePage: React.FC = () => {
return (
@@ -11,41 +12,7 @@ const HomePage: React.FC = () => {
Manage your Human-Robot Interaction projects and experiments
-
-
-
-
- Projects
- Manage your HRI projects
-
-
- Create, edit, and analyze your HRI projects.
- View Projects
-
-
-
-
-
- Experiments
- Design and run experiments
-
-
- Set up, conduct, and analyze HRI experiments.
- New Experiment
-
-
-
-
-
- Data Analysis
- Analyze your research data
-
-
- Visualize and interpret your HRI research data.
- Analyze Data
-
-
-
+
);
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index d1754fc..c56279c 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,10 +1,9 @@
import { ClerkProvider } from '@clerk/nextjs'
import { Inter } from "next/font/google"
-import { ThemeProvider } from "next-themes"
import "~/styles/globals.css"
-export const inter = Inter({
+const inter = Inter({
subsets: ["latin"],
display: "swap",
variable: "--font-sans",
diff --git a/src/app/page.tsx b/src/app/page.tsx
index c199a1e..686ee6a 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -52,7 +52,7 @@ export default function HomePage() {
Join the HRI Revolution
- Whether you're a seasoned researcher or just starting in the field of Human-Robot Interaction,
+ Whether you're a seasoned researcher or just starting in the field of Human-Robot Interaction,
HRIStudio provides the tools and support you need to succeed.
diff --git a/src/app/sign-in/[[...sign-in]]/page.tsx b/src/app/sign-in/[[...sign-in]]/page.tsx
index 9f939ce..6ee827b 100644
--- a/src/app/sign-in/[[...sign-in]]/page.tsx
+++ b/src/app/sign-in/[[...sign-in]]/page.tsx
@@ -31,8 +31,9 @@ export default function SignInPage() {
await setActive({ session: result.createdSessionId })
router.push("/dash")
}
- } catch (err: any) {
- console.error("Error:", err.errors[0].message)
+ } catch (err) {
+ const error = err as { errors?: { message: string }[] };
+ console.error("Error:", error.errors?.[0]?.message ?? "Unknown error")
}
}
@@ -42,6 +43,8 @@ export default function SignInPage() {
strategy,
redirectUrl: "/sso-callback",
redirectUrlComplete: "/dash",
+ }).catch((error) => {
+ console.error("Authentication error:", error); // Handle any potential errors
})
}
@@ -90,7 +93,7 @@ export default function SignInPage() {
- Don't have an account?{" "}
+ Don't have an account?{" "}
Sign up
diff --git a/src/app/sign-up/[[...sign-up]]/page.tsx b/src/app/sign-up/[[...sign-up]]/page.tsx
index 0601d88..8b35c9c 100644
--- a/src/app/sign-up/[[...sign-up]]/page.tsx
+++ b/src/app/sign-up/[[...sign-up]]/page.tsx
@@ -31,8 +31,9 @@ export default function SignUpPage() {
await setActive({ session: result.createdSessionId })
router.push("/dash")
}
- } catch (err: any) {
- console.error("Error:", err.errors[0].message)
+ } catch (err) {
+ const error = err as { errors?: { message: string }[] }; // Specify type
+ console.error("Error:", error.errors?.[0]?.message ?? "Unknown error") // Use optional chaining
}
}
@@ -42,6 +43,8 @@ export default function SignUpPage() {
strategy,
redirectUrl: "/sso-callback",
redirectUrlComplete: "/dash",
+ }).catch((error) => {
+ console.error("Authentication error:", error); // Handle any potential errors
})
}
diff --git a/src/components/Studies.tsx b/src/components/Studies.tsx
new file mode 100644
index 0000000..2b4888f
--- /dev/null
+++ b/src/components/Studies.tsx
@@ -0,0 +1,122 @@
+"use client";
+
+import React, { useState, useEffect } from 'react';
+import { Card, CardContent, CardHeader, CardTitle } from "~/components/ui/card";
+import { Button } from "~/components/ui/button";
+import { Input } from "~/components/ui/input";
+import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogTrigger } from "~/components/ui/dialog";
+
+interface Study {
+ id: number;
+ title: string;
+ description: string;
+}
+
+export function Studies() {
+ const [studies, setStudies] = useState([]);
+ const [newStudy, setNewStudy] = useState({ title: '', description: '' });
+ const [editingStudy, setEditingStudy] = useState(null);
+
+ useEffect(() => {
+ fetchStudies();
+ }, []);
+
+ const fetchStudies = async () => {
+ const response = await fetch('/api/studies');
+ const data = await response.json();
+ setStudies(data);
+ };
+
+ const createStudy = async () => {
+ const response = await fetch('/api/studies', {
+ method: 'POST',
+ headers: { 'Content-Type': 'application/json' },
+ body: JSON.stringify(newStudy),
+ });
+ const createdStudy = await response.json();
+ setStudies([...studies, createdStudy]);
+ setNewStudy({ title: '', description: '' });
+ };
+
+ const updateStudy = async () => {
+ if (!editingStudy) return;
+ const response = await fetch('/api/studies', {
+ method: 'PUT',
+ headers: { 'Content-Type': 'application/json' },
+ body: JSON.stringify(editingStudy),
+ });
+ const updatedStudy = await response.json();
+ setStudies(studies.map(s => s.id === updatedStudy.id ? updatedStudy : s));
+ setEditingStudy(null);
+ };
+
+ const deleteStudy = async (id: number) => {
+ await fetch('/api/studies', {
+ method: 'DELETE',
+ headers: { 'Content-Type': 'application/json' },
+ body: JSON.stringify({ id }),
+ });
+ setStudies(studies.filter(s => s.id !== id));
+ };
+
+ return (
+
+ );
+}
\ No newline at end of file
diff --git a/src/components/sidebar.tsx b/src/components/sidebar.tsx
index 3471233..2ffd6e5 100644
--- a/src/components/sidebar.tsx
+++ b/src/components/sidebar.tsx
@@ -61,8 +61,8 @@ export function Sidebar() {
-
{user?.fullName || 'User'}
-
{user?.primaryEmailAddress?.emailAddress || 'user@example.com'}
+
{user?.fullName ?? 'User'}
+
{user?.primaryEmailAddress?.emailAddress ?? 'user@example.com'}
diff --git a/src/components/ui/input.tsx b/src/components/ui/input.tsx
index 8273a01..a9ef01f 100644
--- a/src/components/ui/input.tsx
+++ b/src/components/ui/input.tsx
@@ -2,10 +2,8 @@ import * as React from "react"
import { cn } from "~/lib/utils"
-export interface InputProps
- extends React.InputHTMLAttributes
{}
-
-const Input = React.forwardRef(
+// Use React.InputHTMLAttributes directly in the component
+const Input = React.forwardRef>(
({ className, type, ...props }, ref) => {
return (
new Date()
),
},
- (example) => ({
+ (example: { name: SQL | Partial>>; }) => ({
nameIndex: index("name_idx").on(example.name),
})
);
+
+export const studies = createTable(
+ "study",
+ {
+ id: serial("id").primaryKey(),
+ title: varchar("title", { length: 256 }).notNull(),
+ description: varchar("description", { length: 1000 }),
+ createdAt: timestamp("created_at", { withTimezone: true })
+ .default(sql`CURRENT_TIMESTAMP`)
+ .notNull(),
+ updatedAt: timestamp("updated_at", { withTimezone: true }).$onUpdate(
+ () => new Date()
+ ),
+ },
+ (study: { title: SQL | Partial>>; }) => ({
+ titleIndex: index("title_idx").on(study.title),
+ })
+);
\ No newline at end of file