* ADD JWT authentication support with token generation and validation * ADD JWT handling after successful login * ADD user authentication and standardize user retrieval * COMBINE token dtos * ADD JWT authentication filter * IMPROVE token handling * STANDARDIZE API endpoints and improve JWT handling * REMOVE extra logging * REMOVE redundant job existence checks * UPDATE Bruno Google token * REFACTOR some classes * ADD JWT cookie check * ADD AuthProvider and CORS configuration; UPDATE API endpoints for consistency * ADD JWT validation check; * ADD profile picture to database * ADD reload after login to update page * PATCH login issue * REMOVE unused classes * ADJUST logging in JwtFilter * REMOVE unused React component
44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"name": "frontend",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"proxy": "http://localhost:8080",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc -b && vite build",
|
|
"lint": "eslint .",
|
|
"preview": "vite preview",
|
|
"postinstall": "flowbite-react patch"
|
|
},
|
|
"dependencies": {
|
|
"@react-oauth/google": "^0.12.2",
|
|
"@tailwindcss/vite": "^4.1.7",
|
|
"axios": "^1.11.0",
|
|
"clsx": "^2.1.1",
|
|
"dotenv": "^16.5.0",
|
|
"flowbite-react": "^0.11.8",
|
|
"lucide-react": "^0.511.0",
|
|
"path": "^0.12.7",
|
|
"react": "^19.1.0",
|
|
"react-dom": "^19.1.0",
|
|
"react-range-slider-input": "^3.2.1",
|
|
"react-router-dom": "^7.8.0",
|
|
"tailwindcss": "^4.1.7"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.25.0",
|
|
"@types/react": "^19.1.2",
|
|
"@types/react-dom": "^19.1.2",
|
|
"@vitejs/plugin-react": "^4.4.1",
|
|
"eslint": "^9.25.0",
|
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
"eslint-plugin-react-refresh": "^0.4.19",
|
|
"globals": "^16.0.0",
|
|
"typescript": "~5.8.3",
|
|
"typescript-eslint": "^8.30.1",
|
|
"vite": "^6.3.5",
|
|
"vite-plugin-mkcert": "^1.17.8"
|
|
}
|
|
}
|