Inital Frontend Code

This commit is contained in:
2025-03-29 12:22:57 -04:00
parent 08e574daf6
commit 04c2c57fc7
19 changed files with 489 additions and 0 deletions

25
React/package.json Normal file
View File

@@ -0,0 +1,25 @@
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@auth0/nextjs-auth0": "^4.3.0",
"next": "15.2.4",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"typescript": "^5.8.2",
"@types/node": "^20.17.28",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"@tailwindcss/postcss": "^4.0.17",
"tailwindcss": "^4.0.17"
}
}