- Add Better Auth config with Google + GitHub social providers - Mount auth handler on /api/auth/* in Express - Generate and migrate auth tables (user, session, account, verification) - Deduplicate term_glosses data for tighter unique constraint - Drop legacy users table
30 lines
747 B
JSON
30 lines
747 B
JSON
{
|
|
"name": "@glossa/web",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc -b && vite build",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"@glossa/shared": "workspace:*",
|
|
"@tailwindcss/vite": "^4.2.2",
|
|
"@tanstack/react-router": "^1.168.1",
|
|
"@tanstack/react-router-devtools": "^1.166.10",
|
|
"better-auth": "^1.6.2",
|
|
"react": "^19.2.4",
|
|
"react-dom": "^19.2.4",
|
|
"tailwindcss": "^4.2.2"
|
|
},
|
|
"devDependencies": {
|
|
"@tanstack/router-plugin": "^1.167.2",
|
|
"@types/node": "^24.12.0",
|
|
"@types/react": "^19.2.14",
|
|
"@types/react-dom": "^19.2.3",
|
|
"@vitejs/plugin-react": "^6.0.1",
|
|
"jsdom": "^29.0.1",
|
|
"vite": "^8.0.1"
|
|
}
|
|
}
|