feat(athena): initial nextjs application

This commit is contained in:
Schubert Ferenc 2026-07-01 22:36:12 +02:00
parent 1f50e8bf7b
commit d8ddc4c416
22 changed files with 12296 additions and 0 deletions

View file

@ -0,0 +1,41 @@
{
"name": "athena",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint"
},
"dependencies": {
"@base-ui/react": "^1.6.0",
"@hookform/resolvers": "^5.4.0",
"@tanstack/react-query": "^5.101.2",
"axios": "^1.18.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^1.23.0",
"next": "16.2.10",
"radix-ui": "^1.6.1",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-hook-form": "^7.80.0",
"shadcn": "^4.12.0",
"tailwind-merge": "^3.6.0",
"tw-animate-css": "^1.4.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.10",
"prettier": "^3.9.4",
"prettier-plugin-tailwindcss": "^0.8.0",
"tailwindcss": "^4",
"typescript": "^5"
}
}