Skip to content

Commit fee18b2

Browse files
committed
feat: Step 05 - Guest mode response cache & stale badge
1 parent 6ed1f48 commit fee18b2

31 files changed

+4006
-1255
lines changed

frontend/.eslintignore

Lines changed: 0 additions & 3 deletions
This file was deleted.

frontend/eslint.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import reactRefresh from 'eslint-plugin-react-refresh';
55
import tseslint from 'typescript-eslint';
66

77
export default tseslint.config(
8-
{ ignores: ['dist'] },
8+
{ ignores: ['dist', 'node_modules', 'coverage'] },
99
{
1010
extends: [js.configs.recommended, ...tseslint.configs.recommended],
1111
files: ['**/*.{ts,tsx}'],

frontend/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
65
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Vite + React + TS</title>
6+
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
7+
<title>OIDC Auth Demo</title>
88
</head>
99
<body>
1010
<div id="root"></div>

frontend/package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,23 @@
2626
]
2727
},
2828
"dependencies": {
29+
"@radix-ui/react-slot": "^1.2.0",
2930
"class-variance-authority": "^0.7.1",
3031
"clsx": "^2.1.1",
32+
"framer-motion": "^12.7.4",
3133
"lucide-react": "^0.488.0",
3234
"react": "^19.0.0",
3335
"react-dom": "^19.0.0",
3436
"tailwind-merge": "^3.2.0",
35-
"tw-animate-css": "^1.2.5"
37+
"tw-animate-css": "^1.2.5",
38+
"zustand": "^5.0.3"
3639
},
3740
"devDependencies": {
3841
"@eslint/js": "^9.22.0",
3942
"@testing-library/jest-dom": "^6.6.3",
4043
"@testing-library/react": "^16.3.0",
4144
"@testing-library/user-event": "^14.6.1",
45+
"@types/node": "^22.14.1",
4246
"@types/react": "^19.0.10",
4347
"@types/react-dom": "^19.0.4",
4448
"@typescript-eslint/eslint-plugin": "^8.30.1",

0 commit comments

Comments
 (0)