Fix workspace setup: move build tools to devDeps, remove stale files

- Move vite, tailwindcss, @tailwindcss/vite to devDependencies in all 3 apps
- Remove orphaned tsconfig.node.json from apps/game and apps/docs
- Remove leftover root src/ directory (duplicate module_bindings)
This commit is contained in:
2026-05-31 18:01:35 -04:00
parent 316a44661b
commit 01bfaedcf3
6 changed files with 42 additions and 62 deletions

View File

@@ -10,17 +10,17 @@
"preview": "vite preview --host 0.0.0.0"
},
"dependencies": {
"@tailwindcss/vite": "^4.3.0",
"@void-nav/ui": "workspace:*",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.30.1",
"tailwindcss": "^4.3.0",
"vite": "^7.0.0"
"react-router-dom": "^6.30.1"
},
"devDependencies": {
"@tailwindcss/vite": "^4.3.0",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"typescript": "^5.8.3"
"tailwindcss": "^4.3.0",
"typescript": "^5.8.3",
"vite": "^7.0.0"
}
}