ensured password reset and account verification works as well as support dashboard

This commit is contained in:
2025-12-13 06:50:29 -06:00
parent 173f6ccf6d
commit a6f267492d
14 changed files with 2991 additions and 111 deletions

View File

@@ -11,7 +11,8 @@
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"predeploy": "vite build && cp ./dist/index.html ./dist/404.html",
"deploy": "gh-pages -d dist"
"deploy": "gh-pages -d dist",
"test": "vitest"
},
"dependencies": {
"@emotion/react": "^11.11.4",
@@ -43,6 +44,9 @@
},
"devDependencies": {
"@iconify/react": "^4.1.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.2.0",
@@ -52,8 +56,10 @@
"eslint-plugin-prettier": "^5.5.3",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"jsdom": "^24.0.0",
"typescript": "^5.2.2",
"vite": "^5.2.0",
"vite-tsconfig-paths": "^4.3.2"
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.3.1"
}
}
}