Compare commits

1 Commits
4 changed files with 5046 additions and 9 deletions
+3
View File
@@ -0,0 +1,3 @@
{
"WillLuke.nextjs.hasPrompted": true
}
+4 -4
View File
@@ -16,11 +16,11 @@
"auth": "^1.2.3", "auth": "^1.2.3",
"framer-motion": "^12.23.9", "framer-motion": "^12.23.9",
"lucide-react": "^0.526.0", "lucide-react": "^0.526.0",
"next": "15.4.4", "next": "15.5.7",
"next-auth": "^5.0.0-beta.29", "next-auth": "^5.0.0-beta.29",
"postcss": "^8.5.6", "postcss": "^8.5.6",
"react": "19.1.0", "react": "19.1.2",
"react-dom": "19.1.0", "react-dom": "19.1.2",
"sonner": "^2.0.6", "sonner": "^2.0.6",
"tailwindcss": "^4.1.11", "tailwindcss": "^4.1.11",
"zod": "^4.0.10" "zod": "^4.0.10"
@@ -31,7 +31,7 @@
"@types/react": "^19", "@types/react": "^19",
"@types/react-dom": "^19", "@types/react-dom": "^19",
"eslint": "^9", "eslint": "^9",
"eslint-config-next": "15.4.4", "eslint-config-next": "15.5.7",
"prisma": "^6.12.0", "prisma": "^6.12.0",
"typescript": "^5" "typescript": "^5"
} }
+5019
View File
File diff suppressed because it is too large Load Diff
+19 -4
View File
@@ -1,7 +1,11 @@
{ {
"compilerOptions": { "compilerOptions": {
"target": "ES2017", "target": "ES2017",
"lib": ["dom", "dom.iterable", "esnext"], "lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true, "allowJs": true,
"skipLibCheck": true, "skipLibCheck": true,
"strict": true, "strict": true,
@@ -19,9 +23,20 @@
} }
], ],
"paths": { "paths": {
"@/*": ["./*"] "@/*": [
"./*"
]
} }
}, },
"include": ["next-env.d.ts","next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], "include": [
"exclude": ["node_modules"] "next-env.d.ts",
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".next/dev/types/**/*.ts"
],
"exclude": [
"node_modules"
]
} }