-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.42 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "ris-cm",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "npm run typecheck && vite build",
"preserve": "vite build",
"serve": "vite preview",
"clean": "rm -rf dist/",
"typecheck": "vue-tsc --noEmit",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:report": "vitest run --reporter=html --outputFile=./test-results/unit-tests/report.html",
"test:e2e": "npm run build && playwright test --project=e2e",
"test:a11y": "npm run build && playwright test --project=a11y",
"coverage": "vitest run --coverage",
"lint": "oxlint",
"lint:check": "oxlint --max-warnings=0",
"lint:fix": "oxlint --fix",
"format:check": "prettier --check .",
"format:fix": "prettier --write --ignore-unknown .",
"style:check": "npm run format:check && npm run lint:check",
"style:fix": "npm run format:fix && npm run lint:fix",
"audit:licenses": "license-checker-rseidelsohn --production --excludePrivatePackages --onlyAllow \"$(. ./parseAllowedLicences.sh)\"",
"check": "npm run typecheck && npm run style:check && npm test && npm run test:e2e && npm run test:a11y"
},
"dependencies": {
"@digitalservicebund/ris-ui": "^4.3.0",
"@sentry/vue": "^10.52.0",
"@tailwindcss/postcss": "^4.3.0",
"@vueuse/core": "^14.3.0",
"keycloak-js": "^26.2.4",
"vue": "^3.5.34",
"vue-router": "^5.0.6"
},
"devDependencies": {
"@iconify-json/ic": "^1.2.4",
"@playwright-testing-library/test": "^4.5.0",
"@playwright/test": "^1.59.1",
"@sentry/vite-plugin": "^5.2.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/user-event": "^14.6.1",
"@testing-library/vue": "^8.1.0",
"@types/node": "^25.6.2",
"@vitejs/plugin-vue": "^6.0.6",
"@vitest/coverage-istanbul": "^4.1.5",
"@vitest/ui": "^4.0.18",
"autoprefixer": "^10.5.0",
"axe-playwright": "^2.2.2",
"jsdom": "^29.1.1",
"license-checker-rseidelsohn": "^4.4.2",
"oxlint": "^1.63.0",
"playwright": "^1.58.2",
"postcss": "^8.5.12",
"prettier": "3.8.3",
"prettier-plugin-sh": "^0.18.1",
"tailwindcss": "^4.2.1",
"ts-node": "^10.9.2",
"typescript": "^6.0.3",
"unplugin-icons": "^23.0.1",
"vite": "^8.0.11",
"vitest": "^4.0.18",
"vue-tsc": "^3.2.8"
},
"engines": {
"node": "24.11.1",
"npm": "11.6.3"
}
}