Initialize Next.js frontend with Biome setup, TailwindCSS, and basic configurations

This commit is contained in:
2026-01-04 19:19:31 +01:00
parent 04afa75b7f
commit acfcc3562f
7 changed files with 1179 additions and 0 deletions

27
frontend/package.json Normal file
View File

@@ -0,0 +1,27 @@
{
"name": "@memegoat/frontend",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "biome check",
"format": "biome format --write"
},
"dependencies": {
"next": "16.1.1",
"react": "19.2.3",
"react-dom": "19.2.3"
},
"devDependencies": {
"@biomejs/biome": "2.2.0",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"babel-plugin-react-compiler": "1.0.0",
"tailwindcss": "^4",
"typescript": "^5"
}
}