Compare commits
12 commits
62633d7105
...
db05f40c5a
Author | SHA1 | Date | |
---|---|---|---|
db05f40c5a | |||
256e42cc4e | |||
9fe68a9dae | |||
fdf65a77ae | |||
edc18a1eb0 | |||
7ae0472461 | |||
03c74c47d9 | |||
f8a84489ad | |||
4671275cb1 | |||
da6e675911 | |||
7f1e75aca5 | |||
183d8a83e7 |
10 changed files with 520 additions and 85 deletions
|
@ -1,4 +1,4 @@
|
|||
DATABASE_URL=
|
||||
DATABASE_URL="file:./dev.db"
|
||||
|
||||
AUTH_SECRET= # Added by `npx auth`. Read more: https://cli.authjs.dev
|
||||
|
||||
|
|
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -40,3 +40,7 @@ yarn-error.log*
|
|||
# typescript
|
||||
*.tsbuildinfo
|
||||
next-env.d.ts
|
||||
|
||||
# database
|
||||
/prisma/dev.db
|
||||
src/generated/prisma
|
|
@ -15,6 +15,7 @@ WORKDIR /app
|
|||
RUN corepack enable
|
||||
COPY --from=deps /app/node_modules ./node_modules
|
||||
COPY . .
|
||||
RUN yarn prisma:generate
|
||||
RUN yarn build
|
||||
|
||||
# ----- Runner -----
|
||||
|
|
|
@ -11,6 +11,9 @@ const compat = new FlatCompat({
|
|||
|
||||
const eslintConfig = [
|
||||
...compat.extends('next/core-web-vitals', 'next/typescript', 'prettier'),
|
||||
{
|
||||
ignores: ['src/generated/**', '.next/**', 'public/**'],
|
||||
},
|
||||
];
|
||||
|
||||
export default eslintConfig;
|
||||
|
|
12
package.json
12
package.json
|
@ -7,14 +7,21 @@
|
|||
"build": "prettier --check . && next build",
|
||||
"start": "next start",
|
||||
"lint": "next lint",
|
||||
"format": "prettier --write ."
|
||||
"format": "prettier --write .",
|
||||
"prisma:migrate": "dotenv -e .env.local -- prisma migrate dev",
|
||||
"prisma:generate": "dotenv -e .env.local -- prisma generate",
|
||||
"prisma:studio": "dotenv -e .env.local -- prisma studio",
|
||||
"prisma:db:push": "dotenv -e .env.local -- prisma db push",
|
||||
"prisma:migrate:reset": "dotenv -e .env.local -- prisma migrate reset"
|
||||
},
|
||||
"dependencies": {
|
||||
"@auth/prisma-adapter": "^2.9.1",
|
||||
"@fortawesome/fontawesome-svg-core": "^6.7.2",
|
||||
"@fortawesome/free-brands-svg-icons": "^6.7.2",
|
||||
"@fortawesome/free-regular-svg-icons": "^6.7.2",
|
||||
"@fortawesome/free-solid-svg-icons": "^6.7.2",
|
||||
"@fortawesome/react-fontawesome": "^0.2.2",
|
||||
"@prisma/client": "^6.7.0",
|
||||
"@radix-ui/react-dropdown-menu": "^2.1.14",
|
||||
"@radix-ui/react-hover-card": "^1.1.13",
|
||||
"@radix-ui/react-label": "^2.1.6",
|
||||
|
@ -37,9 +44,10 @@
|
|||
"devDependencies": {
|
||||
"@eslint/eslintrc": "3.3.1",
|
||||
"@tailwindcss/postcss": "4.1.6",
|
||||
"@types/node": "22.15.17",
|
||||
"@types/node": "22.15.18",
|
||||
"@types/react": "19.1.4",
|
||||
"@types/react-dom": "19.1.5",
|
||||
"dotenv-cli": "8.0.0",
|
||||
"eslint": "9.26.0",
|
||||
"eslint-config-next": "15.3.2",
|
||||
"eslint-config-prettier": "10.1.5",
|
||||
|
|
|
@ -6,10 +6,354 @@
|
|||
|
||||
generator client {
|
||||
provider = "prisma-client-js"
|
||||
output = "../generated/prisma"
|
||||
output = "../src/generated/prisma"
|
||||
}
|
||||
|
||||
datasource db {
|
||||
provider = "postgresql"
|
||||
provider = "sqlite"
|
||||
url = env("DATABASE_URL")
|
||||
}
|
||||
|
||||
enum participant_status {
|
||||
PENDING
|
||||
ACCEPTED
|
||||
DECLINED
|
||||
TENTATIVE
|
||||
}
|
||||
|
||||
enum meeting_status {
|
||||
TENTATIVE
|
||||
CONFIRMED
|
||||
CANCELLED
|
||||
}
|
||||
|
||||
enum friendship_status {
|
||||
PENDING
|
||||
ACCEPTED
|
||||
DECLINED
|
||||
BLOCKED
|
||||
}
|
||||
|
||||
enum notification_type {
|
||||
FRIEND_REQUEST
|
||||
FRIEND_ACCEPT
|
||||
MEETING_INVITE
|
||||
MEETING_UPDATE
|
||||
MEETING_CANCEL
|
||||
MEETING_REMINDER
|
||||
GROUP_MEMBER_ADDED
|
||||
CALENDAR_SYNC_ERROR
|
||||
}
|
||||
|
||||
enum group_member_role {
|
||||
ADMIN
|
||||
MEMBER
|
||||
}
|
||||
|
||||
enum calendar_export_scope {
|
||||
MEETINGS_ONLY
|
||||
MEETINGS_AND_BLOCKED
|
||||
BLOCKED_ONLY
|
||||
}
|
||||
|
||||
enum email_queue_status {
|
||||
PENDING
|
||||
PROCESSING
|
||||
SENT
|
||||
FAILED
|
||||
CANCELLED
|
||||
}
|
||||
|
||||
model User {
|
||||
id String @id @default(cuid())
|
||||
name String @unique
|
||||
first_name String?
|
||||
last_name String?
|
||||
email String @unique
|
||||
emailVerified DateTime? @map("email_verified")
|
||||
password_hash String?
|
||||
image String?
|
||||
timezone String @default("UTC")
|
||||
created_at DateTime @default(now())
|
||||
updated_at DateTime @updatedAt
|
||||
|
||||
accounts Account[]
|
||||
sessions Session[]
|
||||
authenticators Authenticator[]
|
||||
friendships1 Friendship[] @relation("FriendshipUser1")
|
||||
friendships2 Friendship[] @relation("FriendshipUser2")
|
||||
groupsCreated Group[] @relation("GroupCreator")
|
||||
groupMembers GroupMember[]
|
||||
blockedSlots BlockedSlot[]
|
||||
meetingsOrg Meeting[] @relation("MeetingOrganizer")
|
||||
meetingParts MeetingParticipant[]
|
||||
notifications Notification[]
|
||||
notifPrefs UserNotificationPreference[]
|
||||
emailQueue EmailQueue[]
|
||||
calendarTokens CalendarExportToken[]
|
||||
subscriptions CalendarSubscription[]
|
||||
|
||||
@@map("users")
|
||||
}
|
||||
|
||||
model Account {
|
||||
id String @id @default(cuid())
|
||||
userId String @map("user_id")
|
||||
type String
|
||||
provider String
|
||||
providerAccountId String @map("provider_account_id")
|
||||
refresh_token String?
|
||||
access_token String?
|
||||
expires_at Int?
|
||||
token_type String?
|
||||
scope String?
|
||||
id_token String?
|
||||
session_state String?
|
||||
|
||||
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
|
||||
|
||||
@@unique([provider, providerAccountId])
|
||||
@@map("accounts")
|
||||
}
|
||||
|
||||
model Session {
|
||||
id String @id @default(cuid())
|
||||
sessionToken String @unique @map("session_token")
|
||||
userId String @map("user_id")
|
||||
expires DateTime
|
||||
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
|
||||
|
||||
@@map("sessions")
|
||||
}
|
||||
|
||||
model VerificationToken {
|
||||
identifier String
|
||||
token String
|
||||
expires DateTime
|
||||
|
||||
@@unique([identifier, token])
|
||||
@@map("verification_tokens")
|
||||
}
|
||||
|
||||
model Authenticator {
|
||||
user_id String
|
||||
credential_id String
|
||||
provider_account_id String
|
||||
credential_public_key String
|
||||
counter Int
|
||||
credential_device_type String
|
||||
credential_backed_up Boolean
|
||||
transports String?
|
||||
|
||||
user User @relation(fields: [user_id], references: [id], onDelete: Cascade)
|
||||
|
||||
@@id([user_id, credential_id])
|
||||
@@map("authenticators")
|
||||
}
|
||||
|
||||
model Friendship {
|
||||
user_id_1 String
|
||||
user_id_2 String
|
||||
status friendship_status @default(PENDING)
|
||||
requested_at DateTime @default(now())
|
||||
accepted_at DateTime?
|
||||
|
||||
user1 User @relation("FriendshipUser1", fields: [user_id_1], references: [id])
|
||||
user2 User @relation("FriendshipUser2", fields: [user_id_2], references: [id])
|
||||
|
||||
@@id([user_id_1, user_id_2])
|
||||
@@index([user_id_2, status], name: "idx_friendships_user2_status")
|
||||
@@map("friendships")
|
||||
}
|
||||
|
||||
model Group {
|
||||
id String @id @default(cuid())
|
||||
name String
|
||||
description String?
|
||||
creator_id String
|
||||
created_at DateTime @default(now())
|
||||
updated_at DateTime @updatedAt
|
||||
|
||||
creator User @relation("GroupCreator", fields: [creator_id], references: [id])
|
||||
members GroupMember[]
|
||||
|
||||
@@index([creator_id])
|
||||
@@map("groups")
|
||||
}
|
||||
|
||||
model GroupMember {
|
||||
group_id String
|
||||
user_id String
|
||||
role group_member_role @default(MEMBER)
|
||||
added_at DateTime @default(now())
|
||||
|
||||
group Group @relation(fields: [group_id], references: [id])
|
||||
user User @relation(fields: [user_id], references: [id])
|
||||
|
||||
@@id([group_id, user_id])
|
||||
@@index([user_id])
|
||||
@@map("group_members")
|
||||
}
|
||||
|
||||
model BlockedSlot {
|
||||
id String @id @default(cuid())
|
||||
user_id String
|
||||
start_time DateTime
|
||||
end_time DateTime
|
||||
reason String?
|
||||
is_recurring Boolean @default(false)
|
||||
rrule String?
|
||||
recurrence_end_date DateTime?
|
||||
created_at DateTime @default(now())
|
||||
updated_at DateTime @updatedAt
|
||||
|
||||
user User @relation(fields: [user_id], references: [id])
|
||||
|
||||
@@index([user_id, start_time, end_time])
|
||||
@@index([user_id, is_recurring])
|
||||
@@map("blocked_slots")
|
||||
}
|
||||
|
||||
model Meeting {
|
||||
id String @id @default(cuid())
|
||||
title String
|
||||
description String?
|
||||
start_time DateTime
|
||||
end_time DateTime
|
||||
organizer_id String
|
||||
location String?
|
||||
status meeting_status @default(CONFIRMED)
|
||||
created_at DateTime @default(now())
|
||||
updated_at DateTime @updatedAt
|
||||
|
||||
organizer User @relation("MeetingOrganizer", fields: [organizer_id], references: [id])
|
||||
participants MeetingParticipant[]
|
||||
|
||||
@@index([start_time, end_time])
|
||||
@@index([organizer_id])
|
||||
@@index([status])
|
||||
@@map("meetings")
|
||||
}
|
||||
|
||||
model MeetingParticipant {
|
||||
meeting_id String
|
||||
user_id String
|
||||
status participant_status @default(PENDING)
|
||||
added_at DateTime @default(now())
|
||||
|
||||
meeting Meeting @relation(fields: [meeting_id], references: [id])
|
||||
user User @relation(fields: [user_id], references: [id])
|
||||
|
||||
@@id([meeting_id, user_id])
|
||||
@@index([user_id, status], name: "idx_participants_user_status")
|
||||
@@map("meeting_participants")
|
||||
}
|
||||
|
||||
model Notification {
|
||||
id String @id @default(cuid())
|
||||
user_id String
|
||||
type notification_type
|
||||
related_entity_type String?
|
||||
related_entity_id String?
|
||||
message String
|
||||
is_read Boolean @default(false)
|
||||
created_at DateTime @default(now())
|
||||
|
||||
user User @relation(fields: [user_id], references: [id])
|
||||
|
||||
@@index([user_id, is_read, created_at], name: "idx_notifications_user_read_time")
|
||||
@@map("notifications")
|
||||
}
|
||||
|
||||
model UserNotificationPreference {
|
||||
user_id String
|
||||
notification_type notification_type
|
||||
email_enabled Boolean @default(false)
|
||||
updated_at DateTime @default(now())
|
||||
|
||||
user User @relation(fields: [user_id], references: [id])
|
||||
|
||||
@@id([user_id, notification_type])
|
||||
@@map("user_notification_preferences")
|
||||
}
|
||||
|
||||
model EmailQueue {
|
||||
id String @id @default(cuid())
|
||||
user_id String
|
||||
subject String
|
||||
body_html String
|
||||
body_text String?
|
||||
status email_queue_status @default(PENDING)
|
||||
scheduled_at DateTime @default(now())
|
||||
attempts Int @default(0)
|
||||
last_attempt_at DateTime?
|
||||
sent_at DateTime?
|
||||
error_message String?
|
||||
created_at DateTime @default(now())
|
||||
updated_at DateTime @updatedAt
|
||||
|
||||
user User @relation(fields: [user_id], references: [id])
|
||||
|
||||
@@index([status, scheduled_at], name: "idx_email_queue_pending_jobs")
|
||||
@@index([user_id, created_at], name: "idx_email_queue_user_history")
|
||||
@@map("email_queue")
|
||||
}
|
||||
|
||||
model CalendarExportToken {
|
||||
id String @id @default(cuid())
|
||||
user_id String
|
||||
token String @unique
|
||||
scope calendar_export_scope @default(MEETINGS_ONLY)
|
||||
is_active Boolean @default(true)
|
||||
created_at DateTime @default(now())
|
||||
last_accessed_at DateTime?
|
||||
|
||||
user User @relation(fields: [user_id], references: [id])
|
||||
|
||||
@@index([user_id])
|
||||
@@map("calendar_export_tokens")
|
||||
}
|
||||
|
||||
model CalendarSubscription {
|
||||
id String @id @default(cuid())
|
||||
user_id String
|
||||
feed_url String
|
||||
name String?
|
||||
color String?
|
||||
is_enabled Boolean @default(true)
|
||||
last_synced_at DateTime?
|
||||
last_sync_error String?
|
||||
sync_frequency_minutes Int? @default(60)
|
||||
created_at DateTime @default(now())
|
||||
updated_at DateTime @updatedAt
|
||||
|
||||
user User @relation(fields: [user_id], references: [id])
|
||||
externalEvents ExternalEvent[]
|
||||
|
||||
@@index([user_id, is_enabled])
|
||||
@@map("calendar_subscriptions")
|
||||
}
|
||||
|
||||
model ExternalEvent {
|
||||
id String @id @default(cuid())
|
||||
subscription_id String
|
||||
ical_uid String
|
||||
summary String?
|
||||
description String?
|
||||
start_time DateTime
|
||||
end_time DateTime
|
||||
is_all_day Boolean @default(false)
|
||||
location String?
|
||||
rrule String?
|
||||
dtstamp DateTime?
|
||||
sequence Int?
|
||||
show_as_free Boolean @default(false)
|
||||
last_fetched_at DateTime @default(now())
|
||||
|
||||
subscription CalendarSubscription @relation(fields: [subscription_id], references: [id])
|
||||
|
||||
@@unique([subscription_id, ical_uid], name: "uq_external_event_sub_uid")
|
||||
@@index([subscription_id, start_time, end_time])
|
||||
@@index([subscription_id, show_as_free])
|
||||
@@map("external_events")
|
||||
}
|
|
@ -5,6 +5,9 @@ import Credentials from 'next-auth/providers/credentials';
|
|||
|
||||
import Authentik from 'next-auth/providers/authentik';
|
||||
|
||||
import { PrismaAdapter } from '@auth/prisma-adapter';
|
||||
import { prisma } from '@/prisma';
|
||||
|
||||
const providers: Provider[] = [
|
||||
!process.env.DISABLE_PASSWORD_LOGIN &&
|
||||
Credentials({
|
||||
|
@ -34,6 +37,7 @@ export const providerMap = providers
|
|||
|
||||
export const { handlers, signIn, signOut, auth } = NextAuth({
|
||||
providers,
|
||||
adapter: PrismaAdapter(prisma),
|
||||
session: {
|
||||
strategy: 'jwt',
|
||||
},
|
||||
|
|
|
@ -24,14 +24,14 @@ export default function LoginForm() {
|
|||
>
|
||||
<LabeledInput
|
||||
type='email'
|
||||
label='E-Mail'
|
||||
placeholder='Enter your E-Mail'
|
||||
label='E-Mail or Username'
|
||||
placeholder='What you are known as.'
|
||||
name='email'
|
||||
/>
|
||||
<LabeledInput
|
||||
type='password'
|
||||
label='Password'
|
||||
placeholder='Enter your Password'
|
||||
placeholder="Let's hope you remember it."
|
||||
name='password'
|
||||
/>
|
||||
<Button
|
||||
|
|
7
src/prisma.ts
Normal file
7
src/prisma.ts
Normal file
|
@ -0,0 +1,7 @@
|
|||
import { PrismaClient } from '@/generated/prisma';
|
||||
|
||||
const globalForPrisma = globalThis as unknown as { prisma: PrismaClient };
|
||||
|
||||
export const prisma = globalForPrisma.prisma || new PrismaClient();
|
||||
|
||||
if (process.env.NODE_ENV !== 'production') globalForPrisma.prisma = prisma;
|
214
yarn.lock
214
yarn.lock
|
@ -46,6 +46,17 @@ __metadata:
|
|||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@auth/prisma-adapter@npm:^2.9.1":
|
||||
version: 2.9.1
|
||||
resolution: "@auth/prisma-adapter@npm:2.9.1"
|
||||
dependencies:
|
||||
"@auth/core": "npm:0.39.1"
|
||||
peerDependencies:
|
||||
"@prisma/client": ">=2.26.0 || >=3 || >=4 || >=5 || >=6"
|
||||
checksum: 10c0/615ee7c02f690e35ccac8206607a4345ca6455c322a741ddd4dbd52e7a068ace9e5c46c4d8a50fe471ca2c2fb6a5b4bb9924cbd2e911613f671fe929c33278d4
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@emnapi/core@npm:^1.4.0, @emnapi/core@npm:^1.4.3":
|
||||
version: 1.4.3
|
||||
resolution: "@emnapi/core@npm:1.4.3"
|
||||
|
@ -714,12 +725,12 @@ __metadata:
|
|||
linkType: hard
|
||||
|
||||
"@modelcontextprotocol/sdk@npm:^1.8.0":
|
||||
version: 1.11.1
|
||||
resolution: "@modelcontextprotocol/sdk@npm:1.11.1"
|
||||
version: 1.11.3
|
||||
resolution: "@modelcontextprotocol/sdk@npm:1.11.3"
|
||||
dependencies:
|
||||
content-type: "npm:^1.0.5"
|
||||
cors: "npm:^2.8.5"
|
||||
cross-spawn: "npm:^7.0.3"
|
||||
cross-spawn: "npm:^7.0.5"
|
||||
eventsource: "npm:^3.0.2"
|
||||
express: "npm:^5.0.1"
|
||||
express-rate-limit: "npm:^7.5.0"
|
||||
|
@ -727,7 +738,7 @@ __metadata:
|
|||
raw-body: "npm:^3.0.0"
|
||||
zod: "npm:^3.23.8"
|
||||
zod-to-json-schema: "npm:^3.24.1"
|
||||
checksum: 10c0/43ae2c8ebcc55a0f050f94fa325dfcb038325fd3b11d7c0ca2bc005d41a007f0039e90632f12ebf316e17d7a002233bc6e62f4d4626bf84edb24bd580c47671f
|
||||
checksum: 10c0/5bcaf6fb97d886e1a262ba9b44ede91c209bb474a2e5193c9f7d9e2c82829d83775e50f5c37977bc156376e0eca84837da531fe0dfafdc5ad8921db4bf5039c0
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
|
@ -884,6 +895,21 @@ __metadata:
|
|||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@prisma/client@npm:^6.7.0":
|
||||
version: 6.8.1
|
||||
resolution: "@prisma/client@npm:6.8.1"
|
||||
peerDependencies:
|
||||
prisma: "*"
|
||||
typescript: ">=5.1.0"
|
||||
peerDependenciesMeta:
|
||||
prisma:
|
||||
optional: true
|
||||
typescript:
|
||||
optional: true
|
||||
checksum: 10c0/7ffe1bf876883ca7b8384ea6c08f9e305e5f9b045065e9607f83f9af2ffa7e2eb74143ba5e482646afefcd794eb401c439c283d05e4ce9ccfdfd5e0a3f10ac5a
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@prisma/config@npm:6.7.0":
|
||||
version: 6.7.0
|
||||
resolution: "@prisma/config@npm:6.7.0"
|
||||
|
@ -1845,12 +1871,12 @@ __metadata:
|
|||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@types/node@npm:22.15.17":
|
||||
version: 22.15.17
|
||||
resolution: "@types/node@npm:22.15.17"
|
||||
"@types/node@npm:22.15.18":
|
||||
version: 22.15.18
|
||||
resolution: "@types/node@npm:22.15.18"
|
||||
dependencies:
|
||||
undici-types: "npm:~6.21.0"
|
||||
checksum: 10c0/fb92aa10b628683c5b965749f955bc2322485ecb0ea6c2f4cae5f2c7537a16834607e67083a9e9281faaae8d7dee9ada8d6a5c0de9a52c17d82912ef00c0fdd4
|
||||
checksum: 10c0/e23178c568e2dc6b93b6aa3b8dfb45f9556e527918c947fe7406a4c92d2184c7396558912400c3b1b8d0fa952ec63819aca2b8e4d3545455fc6f1e9623e09ca6
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
|
@ -1873,80 +1899,80 @@ __metadata:
|
|||
linkType: hard
|
||||
|
||||
"@typescript-eslint/eslint-plugin@npm:^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0":
|
||||
version: 8.32.0
|
||||
resolution: "@typescript-eslint/eslint-plugin@npm:8.32.0"
|
||||
version: 8.32.1
|
||||
resolution: "@typescript-eslint/eslint-plugin@npm:8.32.1"
|
||||
dependencies:
|
||||
"@eslint-community/regexpp": "npm:^4.10.0"
|
||||
"@typescript-eslint/scope-manager": "npm:8.32.0"
|
||||
"@typescript-eslint/type-utils": "npm:8.32.0"
|
||||
"@typescript-eslint/utils": "npm:8.32.0"
|
||||
"@typescript-eslint/visitor-keys": "npm:8.32.0"
|
||||
"@typescript-eslint/scope-manager": "npm:8.32.1"
|
||||
"@typescript-eslint/type-utils": "npm:8.32.1"
|
||||
"@typescript-eslint/utils": "npm:8.32.1"
|
||||
"@typescript-eslint/visitor-keys": "npm:8.32.1"
|
||||
graphemer: "npm:^1.4.0"
|
||||
ignore: "npm:^5.3.1"
|
||||
ignore: "npm:^7.0.0"
|
||||
natural-compare: "npm:^1.4.0"
|
||||
ts-api-utils: "npm:^2.1.0"
|
||||
peerDependencies:
|
||||
"@typescript-eslint/parser": ^8.0.0 || ^8.0.0-alpha.0
|
||||
eslint: ^8.57.0 || ^9.0.0
|
||||
typescript: ">=4.8.4 <5.9.0"
|
||||
checksum: 10c0/db3d151386d7f086a2289ff21c12bff6d2c9e1e1fab7e20be627927604621618cfcfbe3289a1acf7ed7c0e465b64a696f02f3a95eac0aaafd1fe9d5431efe7b5
|
||||
checksum: 10c0/29dbafc1f02e1167e6d1e92908de6bf7df1cc1fc9ae1de3f4d4abf5d2b537be16b173bcd05770270529eb2fd17a3ac63c2f40d308f7fbbf6d6f286ba564afd64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@typescript-eslint/parser@npm:^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0":
|
||||
version: 8.32.0
|
||||
resolution: "@typescript-eslint/parser@npm:8.32.0"
|
||||
version: 8.32.1
|
||||
resolution: "@typescript-eslint/parser@npm:8.32.1"
|
||||
dependencies:
|
||||
"@typescript-eslint/scope-manager": "npm:8.32.0"
|
||||
"@typescript-eslint/types": "npm:8.32.0"
|
||||
"@typescript-eslint/typescript-estree": "npm:8.32.0"
|
||||
"@typescript-eslint/visitor-keys": "npm:8.32.0"
|
||||
"@typescript-eslint/scope-manager": "npm:8.32.1"
|
||||
"@typescript-eslint/types": "npm:8.32.1"
|
||||
"@typescript-eslint/typescript-estree": "npm:8.32.1"
|
||||
"@typescript-eslint/visitor-keys": "npm:8.32.1"
|
||||
debug: "npm:^4.3.4"
|
||||
peerDependencies:
|
||||
eslint: ^8.57.0 || ^9.0.0
|
||||
typescript: ">=4.8.4 <5.9.0"
|
||||
checksum: 10c0/357a30a853102b1d09a064451f0e66610d41b86f0f4f7bf8b3ce96180e8c58acb0ed24b9f5bba970f7d8d5e94e98c583f2a821135002e3037b0dbce249563926
|
||||
checksum: 10c0/01095f5b6e0a2e0631623be3f44be0f2960ceb24de33b64cb790e24a1468018d2b4d6874d1fa08a4928c2a02f208dd66cbc49735c7e8b54d564e420daabf84d1
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@typescript-eslint/scope-manager@npm:8.32.0":
|
||||
version: 8.32.0
|
||||
resolution: "@typescript-eslint/scope-manager@npm:8.32.0"
|
||||
"@typescript-eslint/scope-manager@npm:8.32.1":
|
||||
version: 8.32.1
|
||||
resolution: "@typescript-eslint/scope-manager@npm:8.32.1"
|
||||
dependencies:
|
||||
"@typescript-eslint/types": "npm:8.32.0"
|
||||
"@typescript-eslint/visitor-keys": "npm:8.32.0"
|
||||
checksum: 10c0/9149d4eebfc7f096a3401a4865e0e552231c91cee362fe3a59c31cf2f0b6b325619f534aed41688c3702867cf86b12454e00055d09e7f229c92083e28e97baac
|
||||
"@typescript-eslint/types": "npm:8.32.1"
|
||||
"@typescript-eslint/visitor-keys": "npm:8.32.1"
|
||||
checksum: 10c0/d2cb1f7736388972137d6e510b2beae4bac033fcab274e04de90ebba3ce466c71fe47f1795357e032e4a6c8b2162016b51b58210916c37212242c82d35352e9f
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@typescript-eslint/type-utils@npm:8.32.0":
|
||||
version: 8.32.0
|
||||
resolution: "@typescript-eslint/type-utils@npm:8.32.0"
|
||||
"@typescript-eslint/type-utils@npm:8.32.1":
|
||||
version: 8.32.1
|
||||
resolution: "@typescript-eslint/type-utils@npm:8.32.1"
|
||||
dependencies:
|
||||
"@typescript-eslint/typescript-estree": "npm:8.32.0"
|
||||
"@typescript-eslint/utils": "npm:8.32.0"
|
||||
"@typescript-eslint/typescript-estree": "npm:8.32.1"
|
||||
"@typescript-eslint/utils": "npm:8.32.1"
|
||||
debug: "npm:^4.3.4"
|
||||
ts-api-utils: "npm:^2.1.0"
|
||||
peerDependencies:
|
||||
eslint: ^8.57.0 || ^9.0.0
|
||||
typescript: ">=4.8.4 <5.9.0"
|
||||
checksum: 10c0/3aec7fbe77d8dae698f75d55d6bed537e7dfa3ed069fbcae456dcf5580c16746ef3e7020522223ca560a75842183fbb8e7ff309e872035d14bf98eb8fae454b4
|
||||
checksum: 10c0/f10186340ce194681804d9a57feb6d8d6c3adbd059c70df58f4656b0d9efd412fb0c2d80c182f9db83bad1a301754e0c24fe26f3354bef3a1795ab9c835cb763
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@typescript-eslint/types@npm:8.32.0":
|
||||
version: 8.32.0
|
||||
resolution: "@typescript-eslint/types@npm:8.32.0"
|
||||
checksum: 10c0/86cc1e365bc12b8baf539e8e2d280b068a7d4a4220f5834fe4de182827a971200408a1ad20f9679af4c4bcdafea03dd66319fe7f1d060ce4b5abbf2962ea3062
|
||||
"@typescript-eslint/types@npm:8.32.1":
|
||||
version: 8.32.1
|
||||
resolution: "@typescript-eslint/types@npm:8.32.1"
|
||||
checksum: 10c0/86f59b29c12e7e8abe45a1659b6fae5e7b0cfaf09ab86dd596ed9d468aa61082bbccd509d25f769b197fbfdf872bbef0b323a2ded6ceaca351f7c679f1ba3bd3
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@typescript-eslint/typescript-estree@npm:8.32.0":
|
||||
version: 8.32.0
|
||||
resolution: "@typescript-eslint/typescript-estree@npm:8.32.0"
|
||||
"@typescript-eslint/typescript-estree@npm:8.32.1":
|
||||
version: 8.32.1
|
||||
resolution: "@typescript-eslint/typescript-estree@npm:8.32.1"
|
||||
dependencies:
|
||||
"@typescript-eslint/types": "npm:8.32.0"
|
||||
"@typescript-eslint/visitor-keys": "npm:8.32.0"
|
||||
"@typescript-eslint/types": "npm:8.32.1"
|
||||
"@typescript-eslint/visitor-keys": "npm:8.32.1"
|
||||
debug: "npm:^4.3.4"
|
||||
fast-glob: "npm:^3.3.2"
|
||||
is-glob: "npm:^4.0.3"
|
||||
|
@ -1955,32 +1981,32 @@ __metadata:
|
|||
ts-api-utils: "npm:^2.1.0"
|
||||
peerDependencies:
|
||||
typescript: ">=4.8.4 <5.9.0"
|
||||
checksum: 10c0/c366a457b544c52cb26ffe3e07ed9d3c6eea9fa8a181c2fdba9a0d2076e5d3198dedfb8510038b0791bd338773d8c8d2af048b7c69999d3fd8540ef790dbc720
|
||||
checksum: 10c0/b5ae0d91ef1b46c9f3852741e26b7a14c28bb58ee8a283b9530ac484332ca58a7216b9d22eda23c5449b5fd69c6e4601ef3ebbd68e746816ae78269036c08cda
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@typescript-eslint/utils@npm:8.32.0":
|
||||
version: 8.32.0
|
||||
resolution: "@typescript-eslint/utils@npm:8.32.0"
|
||||
"@typescript-eslint/utils@npm:8.32.1":
|
||||
version: 8.32.1
|
||||
resolution: "@typescript-eslint/utils@npm:8.32.1"
|
||||
dependencies:
|
||||
"@eslint-community/eslint-utils": "npm:^4.7.0"
|
||||
"@typescript-eslint/scope-manager": "npm:8.32.0"
|
||||
"@typescript-eslint/types": "npm:8.32.0"
|
||||
"@typescript-eslint/typescript-estree": "npm:8.32.0"
|
||||
"@typescript-eslint/scope-manager": "npm:8.32.1"
|
||||
"@typescript-eslint/types": "npm:8.32.1"
|
||||
"@typescript-eslint/typescript-estree": "npm:8.32.1"
|
||||
peerDependencies:
|
||||
eslint: ^8.57.0 || ^9.0.0
|
||||
typescript: ">=4.8.4 <5.9.0"
|
||||
checksum: 10c0/b5b65555b98c8fc92ec016ce2329f644b4d09def28c36422ce77aad9eda1b4dae009bf97b684357e97dd15de66dddba7d8d86e426e11123dae80f7ca2b4f9bd4
|
||||
checksum: 10c0/a2b90c0417cd3a33c6e22f9cc28c356f251bb8928ef1d25e057feda007d522d281bdc37a9a0d05b70312f00a7b3f350ca06e724867025ea85bba5a4c766732e7
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@typescript-eslint/visitor-keys@npm:8.32.0":
|
||||
version: 8.32.0
|
||||
resolution: "@typescript-eslint/visitor-keys@npm:8.32.0"
|
||||
"@typescript-eslint/visitor-keys@npm:8.32.1":
|
||||
version: 8.32.1
|
||||
resolution: "@typescript-eslint/visitor-keys@npm:8.32.1"
|
||||
dependencies:
|
||||
"@typescript-eslint/types": "npm:8.32.0"
|
||||
"@typescript-eslint/types": "npm:8.32.1"
|
||||
eslint-visitor-keys: "npm:^4.2.0"
|
||||
checksum: 10c0/f2e5254d9b1d00cd6360e27240ad72fbab7bcbaed46944943ff077e12fe4883790571f3734f8cb12c3e278bfd7bc4f8f7192ed899f341c282269a9dd16f0cba0
|
||||
checksum: 10c0/9c05053dfd048f681eb96e09ceefa8841a617b8b5950eea05e0844b38fe3510a284eb936324caa899c3ceb4bc23efe56ac01437fab378ac1beeb1c6c00404978
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
|
@ -2482,9 +2508,9 @@ __metadata:
|
|||
linkType: hard
|
||||
|
||||
"caniuse-lite@npm:^1.0.30001579":
|
||||
version: 1.0.30001717
|
||||
resolution: "caniuse-lite@npm:1.0.30001717"
|
||||
checksum: 10c0/6c0bb1e5182fd578ebe97ee2203250849754a4e17d985839fab527ad27e125a4c4ffce3ece5505217fedf30ea0bbc17ac9f93e9ac525c0389ccba61c6e8345dc
|
||||
version: 1.0.30001718
|
||||
resolution: "caniuse-lite@npm:1.0.30001718"
|
||||
checksum: 10c0/67f9ad09bc16443e28d14f265d6e468480cd8dc1900d0d8b982222de80c699c4f2306599c3da8a3fa7139f110d4b30d49dbac78f215470f479abb6ffe141d5d3
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
|
@ -2611,7 +2637,7 @@ __metadata:
|
|||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"cross-spawn@npm:^7.0.3, cross-spawn@npm:^7.0.6":
|
||||
"cross-spawn@npm:^7.0.5, cross-spawn@npm:^7.0.6":
|
||||
version: 7.0.6
|
||||
resolution: "cross-spawn@npm:7.0.6"
|
||||
dependencies:
|
||||
|
@ -2670,14 +2696,14 @@ __metadata:
|
|||
linkType: hard
|
||||
|
||||
"debug@npm:4, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.4, debug@npm:^4.3.5, debug@npm:^4.4.0":
|
||||
version: 4.4.0
|
||||
resolution: "debug@npm:4.4.0"
|
||||
version: 4.4.1
|
||||
resolution: "debug@npm:4.4.1"
|
||||
dependencies:
|
||||
ms: "npm:^2.1.3"
|
||||
peerDependenciesMeta:
|
||||
supports-color:
|
||||
optional: true
|
||||
checksum: 10c0/db94f1a182bf886f57b4755f85b3a74c39b5114b9377b7ab375dc2cfa3454f09490cc6c30f829df3fc8042bc8b8995f6567ce5cd96f3bc3688bd24027197d9de
|
||||
checksum: 10c0/d2b44bc1afd912b49bb7ebb0d50a860dc93a4dd7d946e8de94abc957bb63726b7dd5aa48c18c2386c379ec024c46692e15ed3ed97d481729f929201e671fcd55
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
|
@ -2749,6 +2775,34 @@ __metadata:
|
|||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"dotenv-cli@npm:8.0.0":
|
||||
version: 8.0.0
|
||||
resolution: "dotenv-cli@npm:8.0.0"
|
||||
dependencies:
|
||||
cross-spawn: "npm:^7.0.6"
|
||||
dotenv: "npm:^16.3.0"
|
||||
dotenv-expand: "npm:^10.0.0"
|
||||
minimist: "npm:^1.2.6"
|
||||
bin:
|
||||
dotenv: cli.js
|
||||
checksum: 10c0/000469632758b7b44aaaa80cbbbd7f0c94dc170ec02e51aa8d8280341a0108fb7407954c23054257b77235b064033efdb8745836633eb6fd1586924953cf0528
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"dotenv-expand@npm:^10.0.0":
|
||||
version: 10.0.0
|
||||
resolution: "dotenv-expand@npm:10.0.0"
|
||||
checksum: 10c0/298f5018e29cfdcb0b5f463ba8e8627749103fbcf6cf81c561119115754ed582deee37b49dfc7253028aaba875ab7aea5fa90e5dac88e511d009ab0e6677924e
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"dotenv@npm:^16.3.0":
|
||||
version: 16.5.0
|
||||
resolution: "dotenv@npm:16.5.0"
|
||||
checksum: 10c0/5bc94c919fbd955bf0ba44d33922a1e93d1078e64a1db5c30faeded1d996e7a83c55332cb8ea4fae5a9ca4d0be44cbceb95c5811e70f9f095298df09d1997dd9
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"dunder-proto@npm:^1.0.0, dunder-proto@npm:^1.0.1":
|
||||
version: 1.0.1
|
||||
resolution: "dunder-proto@npm:1.0.1"
|
||||
|
@ -3377,9 +3431,9 @@ __metadata:
|
|||
linkType: hard
|
||||
|
||||
"eventsource-parser@npm:^3.0.1":
|
||||
version: 3.0.1
|
||||
resolution: "eventsource-parser@npm:3.0.1"
|
||||
checksum: 10c0/146ce5ae8325d07645a49bbc54d7ac3aef42f5138bfbbe83d5cf96293b50eab2219926d6cf41eed0a0f90132578089652ba9286a19297662900133a9da6c2fd0
|
||||
version: 3.0.2
|
||||
resolution: "eventsource-parser@npm:3.0.2"
|
||||
checksum: 10c0/067c6e60b7c68a4577630cc7e11d2aaeef52005e377a213308c7c2350596a175d5a179671d85f570726dce3f451c15d174ece4479ce68a1805686c88950d08dd
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
|
@ -3892,13 +3946,20 @@ __metadata:
|
|||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"ignore@npm:^5.2.0, ignore@npm:^5.3.1":
|
||||
"ignore@npm:^5.2.0":
|
||||
version: 5.3.2
|
||||
resolution: "ignore@npm:5.3.2"
|
||||
checksum: 10c0/f9f652c957983634ded1e7f02da3b559a0d4cc210fca3792cb67f1b153623c9c42efdc1c4121af171e295444459fc4a9201101fb041b1104a3c000bccb188337
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"ignore@npm:^7.0.0":
|
||||
version: 7.0.4
|
||||
resolution: "ignore@npm:7.0.4"
|
||||
checksum: 10c0/90e1f69ce352b9555caecd9cbfd07abe7626d312a6f90efbbb52c7edca6ea8df065d66303863b30154ab1502afb2da8bc59d5b04e1719a52ef75bbf675c488eb
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"import-fresh@npm:^3.2.1":
|
||||
version: 3.3.1
|
||||
resolution: "import-fresh@npm:3.3.1"
|
||||
|
@ -4573,12 +4634,14 @@ __metadata:
|
|||
version: 0.0.0-use.local
|
||||
resolution: "meetup@workspace:."
|
||||
dependencies:
|
||||
"@auth/prisma-adapter": "npm:^2.9.1"
|
||||
"@eslint/eslintrc": "npm:3.3.1"
|
||||
"@fortawesome/fontawesome-svg-core": "npm:^6.7.2"
|
||||
"@fortawesome/free-brands-svg-icons": "npm:^6.7.2"
|
||||
"@fortawesome/free-regular-svg-icons": "npm:^6.7.2"
|
||||
"@fortawesome/free-solid-svg-icons": "npm:^6.7.2"
|
||||
"@fortawesome/react-fontawesome": "npm:^0.2.2"
|
||||
"@prisma/client": "npm:^6.7.0"
|
||||
"@radix-ui/react-dropdown-menu": "npm:^2.1.14"
|
||||
"@radix-ui/react-hover-card": "npm:^1.1.13"
|
||||
"@radix-ui/react-label": "npm:^2.1.6"
|
||||
|
@ -4589,11 +4652,12 @@ __metadata:
|
|||
"@radix-ui/react-switch": "npm:^1.2.4"
|
||||
"@radix-ui/react-tabs": "npm:^1.1.11"
|
||||
"@tailwindcss/postcss": "npm:4.1.6"
|
||||
"@types/node": "npm:22.15.17"
|
||||
"@types/node": "npm:22.15.18"
|
||||
"@types/react": "npm:19.1.4"
|
||||
"@types/react-dom": "npm:19.1.5"
|
||||
class-variance-authority: "npm:^0.7.1"
|
||||
clsx: "npm:^2.1.1"
|
||||
dotenv-cli: "npm:8.0.0"
|
||||
eslint: "npm:9.26.0"
|
||||
eslint-config-next: "npm:15.3.2"
|
||||
eslint-config-prettier: "npm:10.1.5"
|
||||
|
@ -4780,11 +4844,11 @@ __metadata:
|
|||
linkType: hard
|
||||
|
||||
"napi-postinstall@npm:^0.2.2":
|
||||
version: 0.2.3
|
||||
resolution: "napi-postinstall@npm:0.2.3"
|
||||
version: 0.2.4
|
||||
resolution: "napi-postinstall@npm:0.2.4"
|
||||
bin:
|
||||
napi-postinstall: lib/cli.js
|
||||
checksum: 10c0/125cb677d59f284e61cd9b4cd840cf735edd4c325ffc54af4fad16c8726642ffeddaa63c5ca3533b5e7023be4d8e9ff223484c5eea2a8efe2e2498fd063cabbd
|
||||
checksum: 10c0/e8c357d7e27848c4af7becf2796afff245a2fc8ba176e1b133410bb1c9934a66d4bc542d0c9f04c73b0ba34ee0486b30b6cd1c62ed3aa36797d394200c9a2a8b
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
|
@ -5607,11 +5671,11 @@ __metadata:
|
|||
linkType: hard
|
||||
|
||||
"semver@npm:^7.3.5, semver@npm:^7.6.0, semver@npm:^7.7.1":
|
||||
version: 7.7.1
|
||||
resolution: "semver@npm:7.7.1"
|
||||
version: 7.7.2
|
||||
resolution: "semver@npm:7.7.2"
|
||||
bin:
|
||||
semver: bin/semver.js
|
||||
checksum: 10c0/fd603a6fb9c399c6054015433051bdbe7b99a940a8fb44b85c2b524c4004b023d7928d47cb22154f8d054ea7ee8597f586605e05b52047f048278e4ac56ae958
|
||||
checksum: 10c0/aca305edfbf2383c22571cb7714f48cadc7ac95371b4b52362fb8eeffdfbc0de0669368b82b2b15978f8848f01d7114da65697e56cd8c37b0dab8c58e543f9ea
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue