mantimon-tcg/frontend/package.json
Cal Corum 059536a42b Implement frontend phases F1-F3: auth, deck management, Phaser integration
Phase F1 - Authentication:
- OAuth callback handling with token management
- Auth guards for protected routes
- Account linking composable
- Profile page updates

Phase F2 - Deck Management:
- Collection page with card filtering and display
- Decks page with CRUD operations
- Deck builder with drag-drop support
- Collection and deck Pinia stores

Phase F3 - Phaser Integration:
- Game bridge composable for Vue-Phaser communication
- Game page with Phaser canvas mounting
- Socket.io event types for real-time gameplay
- Game store with match state management
- Phaser scene scaffolding and type definitions

Also includes:
- New UI components (ConfirmDialog, EmptyState, FilterBar, etc.)
- Toast notification system
- Game config composable for dynamic rule loading
- Comprehensive test coverage for new features
2026-01-31 15:43:56 -06:00

46 lines
1.2 KiB
JSON

{
"name": "mantimon-tcg-frontend",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build",
"preview": "vite preview",
"test": "vitest",
"test:watch": "vitest --watch",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"typecheck": "vue-tsc --noEmit"
},
"dependencies": {
"@tailwindcss/postcss": "^4.1.18",
"@vueuse/core": "^14.2.0",
"mitt": "^3.0.1",
"phaser": "^3.90.0",
"pinia": "^3.0.2",
"pinia-plugin-persistedstate": "^4.2.0",
"socket.io-client": "^4.8.1",
"vue": "^3.5.24",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^24.10.1",
"@vitejs/plugin-vue": "^6.0.1",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.8.1",
"autoprefixer": "^10.4.21",
"eslint": "^9.21.0",
"eslint-plugin-vue": "^10.1.0",
"globals": "^17.2.0",
"jsdom": "^27.4.0",
"postcss": "^8.5.3",
"tailwindcss": "^4.1.4",
"typescript": "~5.9.3",
"typescript-eslint": "^8.54.0",
"vite": "^7.2.4",
"vitest": "^3.1.2",
"vue-tsc": "^3.1.4"
}
}