Merge branch 'feature/auth-user-profile' into 'develop'
feat(fe): implement authentication and user profile management See merge request !1
Showing
| ... | ... | @@ -21,11 +21,17 @@ |
| "build": "vite build" | ||
| }, | ||
| "dependencies": { | ||
| "@hookform/resolvers": "^5.7.1", | ||
| "@tanstack/react-query": "^5.101.4", | ||
| "axios": "^1.19.0", | ||
| "jotai": "^2.12.1", | ||
| "react": "^18.3.1", | ||
| "react-dom": "^18.3.1", | ||
| "react-hook-form": "^7.84.0", | ||
| "zmp-sdk": "latest", | ||
| "zmp-ui": "latest" | ||
| "zmp-ui": "latest", | ||
| "zod": "^4.4.3", | ||
| "zustand": "^5.0.14" | ||
| }, | ||
| "devDependencies": { | ||
| "@types/react": "^18.3.1", | ||
| ... | ... |
This diff is collapsed.
src/lib/api-client.ts
0 → 100644
src/lib/query-client.ts
0 → 100644
src/pages/auth/login.tsx
0 → 100644
src/pages/auth/register.tsx
0 → 100644
src/pages/profile/index.tsx
0 → 100644
This diff is collapsed.
src/services/auth.service.ts
0 → 100644
src/stores/auth-store.ts
0 → 100644
src/types/auth.ts
0 → 100644
Please register or sign in to comment