Initial Setup

This commit is contained in:
Sir Blob
2025-01-24 23:55:12 -05:00
parent 3cd9065178
commit 72d24a968e
19 changed files with 7071 additions and 123 deletions

27
package.json Normal file
View File

@@ -0,0 +1,27 @@
{
"name": "hoyahax-2025",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"next": "15.1.6",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.1.6",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}