-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.13 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.13 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
{
"name": "react_test",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"audit:moderate": "node scripts/npm-audit-check.mjs",
"setup:hooks": "git config core.hooksPath .githooks",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:e2e": "playwright test",
"test:e2e:a11y": "playwright test e2e/accessibility.e2e.spec.ts",
"test:integration": "vitest --run src/App.integration.test.tsx",
"test:e2e:headed": "playwright test --headed"
},
"dependencies": {
"@coreui/icons": "^3.0.1",
"@coreui/icons-react": "^2.3.0",
"@coreui/react": "^5.8.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.2.0",
"@mui/material": "^7.2.0",
"atom": "^1.4.2",
"bootstrap": "^5.3.7",
"d3": "^7.9.0",
"hamburger-react": "^2.5.2",
"idb-keyval": "^6.2.2",
"jotai": "^2.14.0",
"lodash": "^4.17.21",
"lz-string": "^1.5.0",
"react": "^18.2.0",
"react-burger-menu": "^3.1.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.3.8",
"react-gauge-chart": "^0.5.1",
"react-gauge-component": "^2.0.26",
"react-icons": "^5.5.0",
"react-router-dom": "^7.7.0",
"react-scroll-sync": "^1.0.2",
"recharts": "^3.2.1",
"split-pane-react": "^0.1.3"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.1",
"@playwright/test": "^1.58.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/d3": "^7.4.3",
"@types/node": "^25.3.1",
"@types/react": "^18.0.27",
"@types/react-burger-menu": "^2.8.7",
"@types/react-dom": "^18.0.10",
"@types/react-gauge-chart": "^0.4.3",
"@vitejs/plugin-react": "^4.6.0",
"@vitest/ui": "^4.0.18",
"autoprefixer": "^10.4.21",
"baseline-browser-mapping": "^2.8.29",
"jsdom": "^28.1.0",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"typescript": "^5.4.5",
"vite": "^7.0.4",
"vitest": "^4.0.18"
}
}