-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·82 lines (82 loc) · 2.99 KB
/
package.json
File metadata and controls
executable file
·82 lines (82 loc) · 2.99 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
73
74
75
76
77
78
79
80
81
82
{
"name": "frontend-template",
"description": "A frontend based on @rio-cloud/create-frontend",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"start": "vite",
"build": "tsc && vite build && rimraf ./build/mockServiceWorker.js",
"preview": "vite preview",
"test": "vitest run",
"test-dev": "vitest",
"test-all": "tsc && npm run lint && npm run test && npm run test-integration",
"test-ci": "vitest run --reporter=junit --outputFile.junit=./results/junit.xml",
"coverage": "vitest run --coverage",
"lint": "biome check",
"lint-fix": "biome check --write",
"check-fix-unsafe": "biome check --write --unsafe",
"format-code": "biome format --write",
"prepare": "husky",
"audit": "npm audit --registry https://registry.npmjs.org --audit-level moderate --parseable --omit=dev",
"pull-translations": "phrase pull --access_token $PHRASEAPP_ACCESS_TOKEN && node mergeTranslations.js",
"test-integration": "npx playwright test",
"test-integration-ci": "npx playwright install --with-deps && npm run test-integration",
"test-integration-open": "npx playwright test --ui"
},
"dependencies": {
"@redux-devtools/extension": "4.0.0",
"@reduxjs/toolkit": "2.11.2",
"@rio-cloud/rio-notifications-component": "1.0.0",
"@rio-cloud/rio-session-expired-info": "2.0.0",
"@rio-cloud/rio-uikit": "2.2.1",
"@rio-cloud/rio-user-menu-component": "4.0.0",
"@sentry/browser": "10.43.0",
"iframe-resizer-react": "1.1.1",
"oidc-client-ts": "3.5.0",
"qs": "6.15.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "7.71.2",
"react-intl": "7.1.14",
"react-redux": "9.2.0",
"react-router": "7.13.1",
"react-router-dom": "7.13.1"
},
"devDependencies": {
"@biomejs/biome": "2.4.5",
"@playwright/test": "1.58.2",
"@rio-cloud/biome-config": "1.2.0",
"@rio-cloud/vite-plugin-frontend-license-check": "3.0.0",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/node": "24.11.0",
"@types/qs": "6.14.0",
"@types/react": "18.3.28",
"@types/react-dom": "18.3.7",
"@types/react-redux": "7.1.34",
"@vitejs/plugin-react": "6.0.1",
"happy-dom": "20.8.3",
"husky": "9.1.7",
"msw": "2.12.10",
"playwright": "1.58.2",
"rimraf": "6.1.3",
"rollup-plugin-visualizer": "7.0.1",
"typescript": "6.0.1-rc",
"vite": "8.0.0",
"vitest": "4.1.0",
"vitest-fetch-mock": "0.4.5"
},
"engines": {
"node": "24.x",
"npm": ">=11.0.0"
},
"msw": {
"workerDirectory": "public"
},
"overrides": {
"iframe-resizer": "4.3.11",
"typescript": "6.0.1-rc"
}
}