From 1279cfaa4edb09c677e15a6d3245e029d1e810cb Mon Sep 17 00:00:00 2001 From: FragginWagon Date: Wed, 28 Jan 2026 22:19:13 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=9B=A0=EF=B8=8F=20Add=20workspace=20confi?= =?UTF-8?q?guration=20and=20update=20scripts=20for=20server=20management?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- code/websites/pokedex.online/package.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/code/websites/pokedex.online/package.json b/code/websites/pokedex.online/package.json index 397856b..1f8efbd 100644 --- a/code/websites/pokedex.online/package.json +++ b/code/websites/pokedex.online/package.json @@ -3,23 +3,23 @@ "version": "1.0.0", "type": "module", "description": "A modern Vue 3 web application for exploring Pokémon data", + "workspaces": [ + "server" + ], "scripts": { "dev": "vite", "build": "vite build", "preview": "vite preview", - "oauth-proxy": "node server/oauth-proxy.js", + "oauth-proxy": "npm run dev --workspace=server", "dev:full": "concurrently \"npm run dev\" \"npm run oauth-proxy\"", "test": "vitest", "test:ui": "vitest --ui", "test:coverage": "vitest --coverage", - "test:run": "vitest run" + "test:run": "vitest run", + "install:all": "npm install && npm install --workspace=server" }, "dependencies": { - "cors": "^2.8.5", - "dotenv": "^16.6.1", - "express": "^4.18.2", "highlight.js": "^11.11.1", - "node-fetch": "^3.3.2", "vue": "^3.4.15", "vue-router": "^4.6.4", "vue-virtual-scroller": "^2.0.0-beta.8"