-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
86 lines (86 loc) · 2.71 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
{
"name": "arkham.build",
"private": true,
"version": "2.10.3",
"type": "module",
"engines": {
"node": "22.x"
},
"scripts": {
"analyze": "npx vite-bundle-visualizer",
"build": "vite build",
"check": "tsc --noEmit",
"dev": "vite",
"dev:functions": "wrangler pages dev",
"fmt": "biome check --write",
"lint": "biome check",
"knip": "npx knip",
"postinstall": "patch-package",
"prepare:e2e": " playwright install --with-deps",
"preview": "vite preview",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:watch": "vitest watch",
"update-snapshots:local": "PW_TEST_HTML_REPORT_OPEN='never' playwright test --update-snapshots",
"update-snapshots:docker": "docker run -it --rm --ipc=host -v $(pwd):/work/ mcr.microsoft.com/playwright:v1.49.1 /bin/bash -c 'cd /work && npm ci && PW_TEST_HTML_REPORT_OPEN=never npx playwright test --update-snapshots'"
},
"overrides": {
"@radix-ui/primitive": "1.1.1",
"@radix-ui/react-primitive": "2.0.1",
"@radix-ui/react-compose-refs": "1.1.1",
"@radix-ui/react-context": "1.1.1",
"@radix-ui/react-presence": "1.1.2",
"@radix-ui/react-slot": "1.1.1"
},
"dependencies": {
"@dnd-kit/core": "6.2.0",
"@dnd-kit/sortable": "9.0.0",
"@dnd-kit/utilities": "3.2.2",
"@floating-ui/react": "0.26.28",
"@leeoniya/ufuzzy": "1.0.17",
"@radix-ui/react-checkbox": "1.1.3",
"@radix-ui/react-collapsible": "1.1.2",
"@radix-ui/react-radio-group": "1.2.2",
"@radix-ui/react-scroll-area": "1.2.0",
"@radix-ui/react-slider": "1.2.2",
"@radix-ui/react-tabs": "1.1.2",
"@radix-ui/react-toggle-group": "1.1.1",
"dompurify": "3.2.3",
"idb-keyval": "6.2.1",
"lucide-react": "0.456.0",
"marked": "14.1.0",
"nanoid": "5.0.9",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-virtuoso": "4.12.3",
"reselect": "5.1.1",
"victory": "37.3.5",
"wouter": "3.3.5",
"zustand": "5.0.2"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@cloudflare/workers-types": "4.20241230.0",
"@playwright/test": "1.49.1",
"@svgr/plugin-jsx": "8.1.0",
"@svgr/plugin-svgo": "8.1.0",
"@types/node": "22.10.5",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@vitejs/plugin-react": "4.3.4",
"@vitest/coverage-v8": "2.1.8",
"autoprefixer": "10.4.20",
"dotenv": "16.4.7",
"happy-dom": "16.3.0",
"lefthook": "1.10.1",
"patch-package": "8.0.0",
"postcss-extend-rule": "4.0.0",
"rollup-plugin-webpack-stats": "1.2.3",
"typescript": "5.7.2",
"vite": "6.0.7",
"vite-plugin-svgr": "4.3.0",
"vitest": "2.1.8",
"wrangler": "3.99.0"
}
}