Initial Commit

This commit is contained in:
2025-12-14 21:00:46 +01:00
commit d687c6b77f
31 changed files with 6478 additions and 0 deletions

34
src/package.json Normal file
View File

@@ -0,0 +1,34 @@
{
"name": "mtg-draft-maker",
"version": "1.0.0",
"description": "MTG Draft Maker - Monolith Node.js",
"type": "module",
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "tsx watch server/index.ts",
"client": "vite",
"build": "tsc && vite build",
"start": "node server/dist/index.js"
},
"dependencies": {
"express": "^4.21.2",
"socket.io": "^4.8.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"lucide-react": "^0.475.0"
},
"devDependencies": {
"@types/node": "^22.10.1",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"@types/express": "^4.17.21",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.16",
"typescript": "^5.7.2",
"vite": "^6.0.3",
"tsx": "^4.19.2",
"concurrently": "^9.1.0"
}
}