Compare commits

14 Commits
Author SHA1 Message Date
UltraLionFr cf68434ff5 update ads 2025-07-30 03:27:54 +02:00
UltraLionFr 3289436ef3 Update text-white to text-amber-50 2025-07-29 07:44:41 +02:00
UltraLionFr 6f02f96739 Update message dashboard 2025-07-29 06:19:11 +02:00
UltraLionFr e0c403c760 Update icons avec lucide-react 2025-07-29 06:16:52 +02:00
UltraLionFr 82a029ea9d Update url maps 2025-07-29 06:14:31 +02:00
UltraLionFr b94320aa44 Update updateMinecraftName 2025-07-29 06:11:21 +02:00
UltraLionFr afd369ed51 Update dynmap button 2025-07-29 06:01:25 +02:00
UltraLionFr 3c3ad7641f Update dynmap button 2025-07-29 05:56:45 +02:00
UltraLionFr 8321baf239 Update dynmap button 2025-07-29 05:54:08 +02:00
UltraLionFr dc9a286db3 Update 2025-07-29 05:44:36 +02:00
UltraLionFr de600e78c3 Update 2025-07-29 05:33:37 +02:00
UltraLionFr eb4b0d5a5a Update layout.tsx metadata 2025-07-29 05:19:11 +02:00
UltraLionFr b593c60ab2 Premier commit de la v2 de l'app 2025-07-29 05:15:33 +02:00
UltraLionFr 2f14898357 Initial commit from Create Next App 2025-07-27 01:33:53 +02:00
4 changed files with 9 additions and 5046 deletions
-3
View File
@@ -1,3 +0,0 @@
{
"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.5.7", "next": "15.4.4",
"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.2", "react": "19.1.0",
"react-dom": "19.1.2", "react-dom": "19.1.0",
"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.5.7", "eslint-config-next": "15.4.4",
"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
+5 -20
View File
@@ -1,11 +1,7 @@
{ {
"compilerOptions": { "compilerOptions": {
"target": "ES2017", "target": "ES2017",
"lib": [ "lib": ["dom", "dom.iterable", "esnext"],
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true, "allowJs": true,
"skipLibCheck": true, "skipLibCheck": true,
"strict": true, "strict": true,
@@ -23,20 +19,9 @@
} }
], ],
"paths": { "paths": {
"@/*": [ "@/*": ["./*"]
"./*"
]
} }
}, },
"include": [ "include": ["next-env.d.ts","next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"next-env.d.ts", "exclude": ["node_modules"]
"next-env.d.ts", }
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".next/dev/types/**/*.ts"
],
"exclude": [
"node_modules"
]
}