Files
explorer/package.json
D. Rimron-Soutter 240936a850 Standardize ZXDB UI; add SSR search/tables
Unify the look and feel of all /zxdb pages and minimize client pop-in.

- Make all /zxdb pages full-width to match /explorer
- Convert Languages, Genres, Machine Types, and Labels lists to
  Bootstrap tables with table-striped and table-hover inside
  table-responsive wrappers
- Replace raw FK IDs with linked names via SSR repository joins
- Add scoped search boxes on detail pages (labels, genres, languages,
  machine types) with SSR filtering and pagination that preserves q/tab
- Keep explorer results consistent: show Machine/Language names with
  links, no client lookups required

This improves consistency, readability, and first paint stability across
the ZXDB section while keeping navigation fast and discoverable.

Signed-off-by: Junie@lucy.xalior.com
2025-12-12 16:58:50 +00:00

36 lines
953 B
JSON

{
"name": "next-explorer",
"version": "0.2.0",
"private": true,
"scripts": {
"dev": "PORT=4000 next dev --turbopack",
"build": "next build --turbopack",
"start": "next start",
"lint": "eslint",
"deploy-prod": "git push --set-upstream explorer.specnext.dev deploy",
"deploy-test": "git push --set-upstream test.explorer.specnext.dev test"
},
"dependencies": {
"bootstrap": "^5.3.8",
"drizzle-orm": "^0.36.1",
"mysql2": "^3.12.0",
"next": "~15.5.7",
"react": "19.1.0",
"react-bootstrap": "^2.10.10",
"react-bootstrap-icons": "^1.11.6",
"react-dom": "19.1.0",
"typescript": "^5.9.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@types/node": "^20.19.25",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"drizzle-kit": "^0.30.1",
"eslint": "^9.39.1",
"eslint-config-next": "15.5.4",
"sass": "^1.63.6"
}
}