Add example project

This commit is contained in:
Alois 2026-07-02 22:58:57 +02:00
commit db9e65e9d7
18 changed files with 4650 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{
"name": "@tauth-example/frontend",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --host 127.0.0.1 --port 5173",
"build": "tsc -b && vite build",
"preview": "vite preview --host 127.0.0.1 --port 5173"
},
"dependencies": {
"@vitejs/plugin-react": "^5.1.2",
"vite": "^7.3.0",
"react": "^19.2.3",
"react-dom": "^19.2.3"
},
"devDependencies": {
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"typescript": "^6.0.3"
}
}