chore: Packages

This commit is contained in:
Tibo De Peuter 2025-04-13 20:48:00 +02:00
parent 0fd66ad5f5
commit e1e1dd6e9f
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2
3 changed files with 7 additions and 3 deletions

View file

@ -26,7 +26,6 @@
"cross": "^1.0.0", "cross": "^1.0.0",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"dotenv": "^16.4.7", "dotenv": "^16.4.7",
"dwengo-1-common": "^0.1.1",
"express": "^5.0.1", "express": "^5.0.1",
"express-jwt": "^8.5.1", "express-jwt": "^8.5.1",
"gift-pegjs": "^1.0.2", "gift-pegjs": "^1.0.2",

View file

@ -24,10 +24,11 @@
"vue": "^3.5.13", "vue": "^3.5.13",
"vue-i18n": "^11.1.2", "vue-i18n": "^11.1.2",
"vue-router": "^4.5.0", "vue-router": "^4.5.0",
"vuetify": "^3.7.12" "vuetify": "^3.7.12",
"wait-on": "^8.0.3"
}, },
"devDependencies": { "devDependencies": {
"@playwright/test": "^1.50.1", "@playwright/test": "1.50.1",
"@tsconfig/node22": "^22.0.0", "@tsconfig/node22": "^22.0.0",
"@types/jsdom": "^21.1.7", "@types/jsdom": "^21.1.7",
"@types/node": "^22.13.4", "@types/node": "^22.13.4",

View file

@ -115,6 +115,10 @@ export default defineConfig({
command: process.env.CI ? "cd ../ && npm run dev -w backend" : "cd ../ && npm run start -w backend", command: process.env.CI ? "cd ../ && npm run dev -w backend" : "cd ../ && npm run start -w backend",
port: 3000, port: 3000,
reuseExistingServer: !process.env.CI, reuseExistingServer: !process.env.CI,
},
{
command: "wait-on http://localhost:7080",
timeout: 120000,
} }
], ],
}); });