Files
Space-Game/apps/site/package.json
francy51 01bfaedcf3 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)
2026-05-31 18:01:35 -04:00

27 lines
617 B
JSON

{
"name": "@void-nav/site",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite --host 0.0.0.0",
"build": "tsc --noEmit && vite build",
"check": "tsc --noEmit",
"preview": "vite preview --host 0.0.0.0"
},
"dependencies": {
"@void-nav/ui": "workspace:*",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.30.1"
},
"devDependencies": {
"@tailwindcss/vite": "^4.3.0",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"tailwindcss": "^4.3.0",
"typescript": "^5.8.3",
"vite": "^7.0.0"
}
}