create new Next.js project

This commit is contained in:
Michi 2025-04-12 21:21:15 +02:00
parent 7b4a6dac47
commit 661f52c16b
16 changed files with 1835 additions and 0 deletions

24
my-app/package.json Normal file
View file

@ -0,0 +1,24 @@
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"next": "15.3.0"
},
"devDependencies": {
"typescript": "^5",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@tailwindcss/postcss": "^4",
"tailwindcss": "^4"
}
}