bstein-dev-home/frontend/package.json

44 lines
1.6 KiB
JSON
Raw Normal View History

2025-12-18 01:13:04 -03:00
{
2026-01-05 02:28:15 -03:00
"name": "atlas-portal",
"version": "0.1.1",
2025-12-18 01:13:04 -03:00
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"prebuild": "node scripts/build_media_manifest.mjs",
2025-12-18 01:13:04 -03:00
"build": "vite build",
2026-04-11 00:02:26 -03:00
"preview": "vite preview",
"test:unit": "JEST_JUNIT_OUTPUT_FILE=../build/junit-frontend-unit.xml jest --ci --runInBand --config ../testing/frontend/jest.config.cjs --coverage --coverageReporters=text --coverageReporters=lcov --coverageReporters=json-summary --coverageDirectory=coverage --reporters=default --reporters=jest-junit",
2026-04-11 00:02:26 -03:00
"test:component": "playwright test --config ../testing/frontend/playwright-ct.config.mjs",
"test:e2e": "playwright test --config ../testing/frontend/playwright.config.mjs",
"test": "npm run test:unit && npm run test:component && npm run test:e2e",
"lint": "cd .. && eslint --config testing/frontend/eslint.config.js $(find frontend/src testing/frontend -type f \\( -name '*.js' -o -name '*.mjs' \\) | sort)"
2025-12-18 01:13:04 -03:00
},
"dependencies": {
"axios": "^1.6.7",
"keycloak-js": "^26.2.2",
2025-12-18 01:13:04 -03:00
"mermaid": "^10.9.1",
2026-01-04 21:57:31 -03:00
"qrcode": "^1.5.4",
2025-12-18 01:13:04 -03:00
"vue": "^3.4.21",
"vue-router": "^4.3.2"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
2026-04-11 00:02:26 -03:00
"@eslint/js": "^9.22.0",
"@playwright/experimental-ct-vue": "^1.51.0",
"@playwright/test": "^1.51.0",
2025-12-18 01:13:04 -03:00
"@vitejs/plugin-vue": "^5.0.4",
"@vue/vue3-jest": "^29.2.6",
2026-04-11 00:02:26 -03:00
"@vue/test-utils": "^2.4.6",
"babel-jest": "^29.7.0",
2026-04-11 00:02:26 -03:00
"eslint": "^9.22.0",
"globals": "^16.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
2026-04-11 00:02:26 -03:00
"jsdom": "^26.0.0",
2025-12-18 01:13:04 -03:00
"vite": "^5.2.0"
}
}