-
Notifications
You must be signed in to change notification settings - Fork 222
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.73 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
{
"name": "secuscan-frontend",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview --host 127.0.0.1 --port 8080",
"typecheck": "tsc --noEmit",
"test": "cross-env NODE_OPTIONS=--max-old-space-size=8192 vitest run",
"test:watch": "cross-env NODE_OPTIONS=--max-old-space-size=8192 vitest",
"quality": "node quality-gate.cjs",
"quality:full": "npm run quality && npm run typecheck && npm run test",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui"
},
"dependencies": {
"@hugeicons/core-free-icons": "^4.1.4",
"@hugeicons/react": "^1.1.6",
"@tanstack/react-virtual": "^3.14.2",
"framer-motion": "^12.38.0",
"html2canvas": "^1.4.1",
"jspdf": "^4.2.1",
"lucide-react": "^1.0.1",
"postcss-import": "^16.1.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "^5.6.0",
"react-router-dom": "^6.20.0",
"recharts": "^3.8.0",
"styled-components": "^6.3.12"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@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.5.0",
"@types/react": "18.3.5",
"@types/react-dom": "18.3.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.27",
"cross-env": "^10.1.0",
"jsdom": "^29.0.1",
"postcss": "^8.5.8",
"tailwindcss": "^3.4.19",
"typescript": "5.5.4",
"vite": "^6.4.3",
"vitest": "^4.1.8"
},
"overrides": {
"esbuild": "^0.28.1",
"react-router": "^6.30.4",
"dompurify": "^3.4.10",
"@babel/core": "^7.29.7"
}
}