First commit

This commit is contained in:
l-nmch
2024-12-18 22:52:39 +01:00
commit be09bfe042
46 changed files with 5378 additions and 0 deletions

42
package.json Normal file
View File

@@ -0,0 +1,42 @@
{
"name": "retake.fr",
"version": "0.0.1",
"description": "retake.fr website",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"repository": {
"type": "git",
"url": "https://github.com/retake-ei/retake.fr"
},
"keywords": [
"nextjs",
"tailwindcss",
"free"
],
"author": "Léo Nonnenmacher",
"license": "MIT",
"dependencies": {
"@headlessui/react": "^2.0.3",
"@heroicons/react": "^2.1.3",
"next": "15.0.3",
"next-themes": "^0.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.51.4"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}