Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,9 @@ yarn-error.log*
*.tsbuildinfo
next-env.d.ts
.env*.local

# we hate all package managers except pnpm
package-lock.json
bun.lock
bun.lockb
certificates
1,760 changes: 0 additions & 1,760 deletions bun.lock

This file was deleted.

12 changes: 6 additions & 6 deletions drizzle.config.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { defineConfig } from "drizzle-kit";

export default defineConfig({
dialect: "postgresql",
schema: "./src/lib/schema.ts",
out: "./drizzle",
dbCredentials: {
url: process.env.DATABASE_URL!,
},
dialect: "postgresql",
schema: "./src/lib/database/schema.ts",
out: "./drizzle",
dbCredentials: {
url: process.env.DATABASE_URL!,
},
});
19 changes: 17 additions & 2 deletions next.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,22 @@
import type { NextConfig } from "next";

const nextConfig: NextConfig = {
/* config options here */
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'cdn.discordapp.com',
port: '',
pathname: '/avatars/**',
},
{
protocol: 'https',
hostname: 'cdn.discordapp.com',
port: '',
pathname: '/embed/avatars/**',
},
],
},
};

export default nextConfig;
export default nextConfig;
54 changes: 39 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,35 @@
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev": "next dev --experimental-https",
"build": "next build",
"start": "next start",
"lint": "next lint"
"lint": "next lint",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push:pg",
"db:seed": "python database_container/seeds/seed.py"
},
"dependencies": {
"@auth/drizzle-adapter": "^1.11.1",
"@auth/pg-adapter": "^1.11.1",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@heroicons/react": "^2.2.0",
"@mui/icons-material": "^7.3.4",
"@mui/icons-material": "^7.3.5",
"@neondatabase/serverless": "^1.0.2",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-hover-card": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-navigation-menu": "^1.2.14",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "^1.2.8",
"@tanstack/react-query": "^5.90.7",
"@trpc/client": "^11.7.1",
"@trpc/react-query": "^11.7.1",
"@trpc/server": "^11.7.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.44.7",
Expand All @@ -28,35 +41,46 @@
"gsap": "^3.13.0",
"lucide-react": "^0.510.0",
"luxon": "^3.7.2",
"mongodb": "^6.20.0",
"mongoose": "^8.19.2",
"mongodb": "^6.21.0",
"mongoose": "^8.19.3",
"next": "15.3.2",
"next-auth": "^4.24.13",
"next-sitemap": "^4.2.3",
"pg": "8.16.3",
"pg-core@latest": "link:drizzle-orm/pg-core@latest",
"postgres": "^3.4.7",
"qrcode": "^1.5.4",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-icons": "^5.5.0",
"react-pdf": "^10.2.0",
"react-vertical-timeline-component": "^3.5.3",
"recharts": "^2.15.4",
"tailwind-merge": "^3.3.1"
"superjson": "^2.2.5",
"tailwind-merge": "^3.4.0",
"yargs": "^18.0.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@tailwindcss/postcss": "^4.1.16",
"@eslint/js": "^9.39.1",
"@tailwindcss/postcss": "^4.1.17",
"@types/luxon": "^3.7.1",
"@types/node": "^20.19.24",
"@types/node": "^20.19.25",
"@types/pg": "^8.15.6",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.2.4",
"@types/react-dom": "^19.2.3",
"@types/react-vertical-timeline-component": "^3.3.6",
"autoprefixer": "^10.4.21",
"@types/yargs": "^17.0.34",
"autoprefixer": "^10.4.22",
"dotenv": "^17.2.3",
"drizzle-kit": "^0.31.6",
"eslint": "^9.39.0",
"drizzle-kit": "^0.31.7",
"eslint": "^9.39.1",
"eslint-config-next": "15.3.2",
"tailwindcss": "^4.1.16",
"tailwindcss": "^4.1.17",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3"
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.4"
}
}
Loading