Files
impstr/package.json
Felix Förtsch f867934295 refactor impstr to react/vite stack, update deploy target
migrate from vanilla TypeScript + Bun bundler to React 19, Vite, TanStack Router,
Zustand, shadcn-style components, Tailwind v4, vite-plugin-pwa.

game logic moves into a Zustand store, UI into React feature components with
file-based routing. all 27 tests pass, biome lint clean.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-03 13:02:11 +01:00

38 lines
883 B
JSON

{
"name": "impstr",
"version": "2026.03.03",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"test": "vitest run"
},
"dependencies": {
"@tanstack/react-router": "^1.114.0",
"clsx": "^2.1.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tailwind-merge": "^3.0.2",
"zustand": "^5.0.5"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@tailwindcss/vite": "^4.1.3",
"@tanstack/router-plugin": "^1.114.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^4.4.1",
"jsdom": "^26.1.0",
"tailwindcss": "^4.1.3",
"typescript": "^5.8.3",
"vite": "^6.3.2",
"vite-plugin-pwa": "^1.0.0",
"vitest": "^3.1.1"
}
}