-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.18 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
{
"version": "4.0.0",
"name": "serilog-ui",
"private": true,
"type": "module",
"scripts": {
"build": "tsc && vite build",
"lint": "eslint src",
"make-me-pretty": "prettier --write .\\src\\",
"preview": "vite preview",
"start": "vite",
"test": "vitest",
"test:ci": "vitest run --reporter=default --reporter=junit --reporter=vitest-sonar-reporter --coverage",
"test:ui": "vitest --ui --reporter=default"
},
"dependencies": {
"@fontsource/mononoki": "^5.2.5",
"@mantine/core": "^9.2.1",
"@mantine/dates": "^9.2.1",
"@mantine/hooks": "^9.2.1",
"@mantine/notifications": "^9.2.1",
"@tabler/icons-react": "^3.44.0",
"@tanstack/react-query": "^5.100.10",
"dayjs": "^1.11.20",
"jose": "^6.2.3",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-hook-form": "^7.76.0",
"react-router": "^7.15.1",
"xml-formatter": "^3.7.0"
},
"devDependencies": {
"@antfu/eslint-config": "^9.0.0",
"@eslint-react/eslint-plugin": "^5.7.10",
"@faker-js/faker": "^10.4.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.8.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"@vitest/coverage-istanbul": "^4.1.6",
"@vitest/eslint-plugin": "^1.6.17",
"@vitest/ui": "^4.1.6",
"@welldone-software/why-did-you-render": "^10.0.1",
"eslint": "^10.4.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"eslint-plugin-testing-library": "^7.16.2",
"happy-dom": "^20.9.0",
"msw": "^2.14.6",
"postcss": "^8.5.18",
"postcss-preset-mantine": "^1.18.0",
"postcss-simple-vars": "^7.0.1",
"shiki": "^4.0.2",
"testing-library-selector": "^0.3.1",
"typescript": "^6.0.3",
"vite": "^8.0.13",
"vite-plugin-checker": "^0.13.0",
"vite-plugin-mkcert": "^2.0.0",
"vitest": "^4.1.6",
"vitest-sonar-reporter": "^3.0.0"
},
"engines": {
"node": ">=24.15.0"
},
"msw": {
"workerDirectory": "src"
},
"packageManager": "yarn@4.14.1"
}