Initial commit

This commit is contained in:
Kilo Code Cloud
2026-01-14 18:43:10 +00:00
commit dbb067fbab
11 changed files with 998 additions and 0 deletions

27
package.json Normal file
View File

@@ -0,0 +1,27 @@
{
"name": "nextjs-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint"
},
"dependencies": {
"react": "^19.2.1",
"react-dom": "^19.2.1",
"next": "15.5.9"
},
"devDependencies": {
"typescript": "^5.9.3",
"@types/node": "^24.10.2",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@tailwindcss/postcss": "^4.1.17",
"tailwindcss": "^4.1.17",
"eslint": "^9.39.1",
"eslint-config-next": "^15.5.7",
"@eslint/eslintrc": "^3.3.3"
}
}