Initial commit from Create Next App

This commit is contained in:
2025-12-17 19:26:09 +01:00
commit 9bb649c9e2
17 changed files with 2133 additions and 0 deletions

26
package.json Normal file
View File

@ -0,0 +1,26 @@
{
"name": "app.gaertan.art",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "biome check",
"format": "biome format --write"
},
"dependencies": {
"next": "16.0.10",
"react": "19.2.1",
"react-dom": "19.2.1"
},
"devDependencies": {
"@biomejs/biome": "2.2.0",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"tailwindcss": "^4",
"typescript": "^5"
}
}