2026-08-25 11:42:17 +02:00
|
|
|
{
|
|
|
|
|
"name": "frontend",
|
|
|
|
|
"type": "module",
|
|
|
|
|
"private": true,
|
|
|
|
|
"scripts": {
|
|
|
|
|
"build": "nuxt build",
|
|
|
|
|
"dev": "nuxt dev",
|
|
|
|
|
"generate": "nuxt generate",
|
|
|
|
|
"preview": "nuxt preview",
|
|
|
|
|
"postinstall": "nuxt prepare",
|
2026-09-11 11:25:34 +02:00
|
|
|
"typecheck": "nuxt typecheck",
|
2026-09-11 11:41:52 +02:00
|
|
|
"lint": "eslint .",
|
|
|
|
|
"test:unit": "vitest run --config vitest.unit.config.ts",
|
|
|
|
|
"test:integration": "vitest run --config vitest.integration.config.ts",
|
|
|
|
|
"pretest:e2e": "ln -sfn ../frontend/node_modules ../tests/node_modules",
|
|
|
|
|
"test:e2e": "playwright test",
|
|
|
|
|
"test": "npm run test:unit && npm run test:integration && npm run test:e2e"
|
2026-08-25 11:42:17 +02:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"marked": "^18.0.11",
|
|
|
|
|
"nuxt": "^4.5.2",
|
2026-08-25 16:11:14 +02:00
|
|
|
"simple-icons": "^16.28.0",
|
2026-08-25 11:42:17 +02:00
|
|
|
"vue": "^3.5.41",
|
|
|
|
|
"vue-router": "^5.2.0"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-09-11 11:25:34 +02:00
|
|
|
"@nuxt/eslint": "^1.17.0",
|
2026-09-11 11:41:52 +02:00
|
|
|
"@nuxt/test-utils": "^4.3.2",
|
|
|
|
|
"@playwright/test": "^1.63.0",
|
|
|
|
|
"@vitest/coverage-v8": "^5.0.0",
|
|
|
|
|
"@vue/test-utils": "^2.5.0",
|
2026-09-11 11:25:34 +02:00
|
|
|
"eslint": "^10.10.0",
|
2026-09-11 11:41:52 +02:00
|
|
|
"happy-dom": "^20.14.3",
|
2026-08-25 11:42:17 +02:00
|
|
|
"typescript": "^5.9.3",
|
2026-09-11 11:41:52 +02:00
|
|
|
"vitest": "^5.0.0",
|
2026-08-25 11:42:17 +02:00
|
|
|
"vue-tsc": "^3.3.11"
|
|
|
|
|
}
|
|
|
|
|
}
|