-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 3.32 KB
/
package.json
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "ris-norms-frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"coverage": "TZ=UTC vitest run --coverage",
"test": "TZ=UTC vitest run",
"test:watch": "TZ=UTC vitest",
"preview": "vite preview",
"typecheck": "vue-tsc --noEmit",
"eslint:check": "eslint --max-warnings 0 .",
"eslint:check:imports": "eslint --max-warnings 0 --config eslint-imports.config.js .",
"eslint:fix": "npm run eslint:check -- --fix",
"eslint:fix:imports": "npm run eslint:check:imports -- --fix",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write --ignore-unknown .",
"style:check": "npm run prettier:check && npm run eslint:check:imports",
"style:fix": "npm run prettier:fix && npm run eslint:fix:imports",
"test:a11y": "playwright test --project=a11y",
"test:e2e": "playwright test",
"test:chromium": "playwright test --project=chromium",
"test:firefox": "playwright test --project=firefox",
"test:msedge": "playwright test --project=msedge",
"audit:licences": "license-checker --production --excludePrivatePackages --onlyAllow \"$(. ./parseAllowedLicences.sh)\" --csv --out ./frontend-licence-report.csv"
},
"engines": {
"node": "22.14.0",
"npm": "11.1.0"
},
"dependencies": {
"@codemirror/lang-xml": "~6.1.0",
"@digitalservicebund/ris-ui": "~2.0.0",
"@sentry/vue": "~9.1.0",
"@types/lodash.sortby": "~4.7.9",
"@types/uuid": "~10.0.0",
"@vueuse/core": "~12.6.0",
"codemirror": "~6.0.1",
"dayjs": "~1.11.10",
"immer": "~10.1.1",
"keycloak-js": "~26.1.0",
"lodash.sortby": "~4.7.0",
"primevue": "~4.2.0",
"uuid": "~11.0.0",
"vue": "~3.5.0",
"vue-router": "~4.5.0"
},
"devDependencies": {
"@axe-core/playwright": "~4.10.0",
"@digitalservice4germany/angie": "~1.2.0",
"@digitalservice4germany/style-dictionary": "~2.0.0",
"@eslint/compat": "^1.2.0",
"@eslint/js": "^9.12.0",
"@iconify-json/ic": "~1.2.0",
"@playwright/test": "~1.50.0",
"@sentry/vite-plugin": "^3.0.0",
"@testing-library/jest-dom": "~6.6.0",
"@testing-library/user-event": "^14.5.2",
"@testing-library/vue": "~8.1.0",
"@types/node": "^22.5.5",
"@typescript-eslint/eslint-plugin": "~8.24.0",
"@typescript-eslint/parser": "~8.24.0",
"@vitejs/plugin-vue": "~5.2.0",
"@vitest/coverage-v8": "~3.0.0",
"@vitest/eslint-plugin": "^1.1.7",
"@vue/eslint-config-prettier": "~10.2.0",
"@vue/eslint-config-typescript": "~14.4.0",
"autoprefixer": "~10.4.19",
"axe-playwright": "~2.1.0",
"dotenv": "~16.4.5",
"eslint": "~9.20.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "~2.31.0",
"eslint-plugin-playwright": "~2.2.0",
"eslint-plugin-testing-library": "^7.0.0",
"eslint-plugin-vue": "~9.32.0",
"eslint-plugin-vuejs-accessibility": "~2.4.0",
"globals": "^15.10.0",
"jsdom": "~26.0.0",
"license-checker": "~25.0.1",
"playwright": "~1.50.0",
"postcss": "~8.5.0",
"prettier": "~3.5.0",
"prettier-plugin-tailwindcss": "~0.6.0",
"tailwindcss": "~3.4.3",
"typescript": "~5.7.3",
"unplugin-icons": "~22.0.0",
"vite": "~6.1.0",
"vitest": "~3.0.0",
"vue-tsc": "~2.2.0",
"xpath": "~0.0.34"
}
}