Preserves the working F3 Phaser demo implementation before resetting the main frontend/ directory for a fresh start. The POC demonstrates: - Vue 3 + Phaser 3 integration - Real card rendering with images - Vue-Phaser state sync via gameBridge - Card interactions and damage counters To restore: copy .claude/frontend-poc/ back to frontend/ and run npm install
46 lines
1.2 KiB
JSON
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"
|
|
}
|
|
}
|