-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.56 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.56 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "algorithm-visualizer-v2",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"prepare": "husky",
"dev": "vite",
"dev-e2e": "E2E=\"true\" vite",
"build": "tsc -b && vite build",
"build-analyze": "BUNDLE_ANALYZE=\"true\" vite build",
"lint": "eslint . --cache",
"preview": "vite preview",
"test": "vitest",
"test-e2e": "playwright test",
"typecheck": "tsc --project tsconfig.app.json",
"update-index-ts": "cd src && for f in *; do pnpm dlx create-ts-index create ./$f -w -b; done"
},
"dependencies": {
"@floating-ui/dom": "^1.7.0",
"@radix-ui/react-accordion": "^1.2.10",
"@radix-ui/react-alert-dialog": "^1.1.13",
"@radix-ui/react-checkbox": "^1.3.1",
"@radix-ui/react-collapsible": "^1.1.10",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.6",
"@radix-ui/react-navigation-menu": "^1.2.12",
"@radix-ui/react-scroll-area": "^1.2.8",
"@radix-ui/react-select": "^2.2.4",
"@radix-ui/react-separator": "^1.1.6",
"@radix-ui/react-slider": "^1.3.4",
"@radix-ui/react-slot": "^1.2.2",
"@radix-ui/react-switch": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.11",
"@radix-ui/react-tooltip": "^1.2.6",
"@supabase-cache-helpers/postgrest-swr": "^2.0.0",
"@supabase/postgrest-js": "1.19.4",
"@supabase/supabase-js": "2.49.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "1.1.1",
"embla-carousel-react": "^8.6.0",
"i18next": "^25.1.3",
"i18next-browser-languagedetector": "^8.1.0",
"i18next-http-backend": "^3.0.2",
"immer": "^10.1.1",
"lodash-es": "^4.17.21",
"lucide-react": "^0.510.0",
"motion": "^12.12.1",
"nanoid": "^5.1.5",
"next-themes": "^0.4.6",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-hook-mathjax": "^2.0.5",
"react-i18next": "^15.5.1",
"shepherd.js": "^14.5.0",
"sonner": "^2.0.3",
"swr": "^2.3.3",
"tailwind-merge": "^3.3.0",
"ts-pattern": "^5.7.0",
"type-fest": "^4.41.0",
"usehooks-ts": "^3.1.1",
"zustand": "5.0.4"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@playwright/test": "^1.52.0",
"@simbathesailor/use-what-changed": "^2.0.0",
"@tailwindcss/postcss": "^4.1.7",
"@tailwindcss/vite": "^4.1.7",
"@testing-library/react": "^16.3.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.15.18",
"@types/react": "^19.1.4",
"@types/react-dom": "^19.1.5",
"@typescript-eslint/parser": "^8.32.1",
"@vitejs/plugin-react": "^4.4.1",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.5",
"eslint-import-resolver-typescript": "^4.3.4",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"eslint-plugin-sort": "^4.0.0",
"eslint-plugin-testing-library": "^7.2.0",
"eslint-plugin-unicorn": "^59.0.1",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^16.1.0",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"lint-staged": "^16.0.0",
"msw": "^2.8.2",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^4.1.7",
"tw-animate-css": "^1.2.9",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1",
"vite": "^6.3.5",
"vite-bundle-analyzer": "^0.20.1",
"vitest": "^3.1.3"
},
"msw": {
"workerDirectory": [
"public"
]
}
}