Remove 77 unused dependencies and add missing @types/node

Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-01-19 19:18:42 +00:00
parent de0a282086
commit 8be2c3e313
3 changed files with 17 additions and 977 deletions

965
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -12,10 +12,8 @@
},
"dependencies": {
"@babel/standalone": "^7.28.6",
"@heroicons/react": "^2.2.0",
"@hookform/resolvers": "^4.1.3",
"@monaco-editor/react": "^4.7.0",
"@octokit/core": "^6.1.4",
"@phosphor-icons/react": "^2.1.7",
"@radix-ui/colors": "^3.0.0",
"@radix-ui/react-accordion": "^1.2.3",
@@ -45,40 +43,31 @@
"@radix-ui/react-toggle-group": "^1.1.2",
"@radix-ui/react-tooltip": "^1.1.8",
"@reduxjs/toolkit": "^2.11.2",
"@tanstack/react-query": "^5.83.1",
"@types/sql.js": "^1.4.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"d3": "^7.9.0",
"date-fns": "^3.6.0",
"embla-carousel-react": "^8.5.2",
"framer-motion": "^12.6.2",
"input-otp": "^1.4.2",
"lucide-react": "^0.484.0",
"marked": "^15.0.7",
"next": "16.1.3",
"next-themes": "^0.4.6",
"octokit": "^4.1.2",
"pyodide": "^0.29.1",
"react": "^19.0.0",
"react-day-picker": "^9.6.7",
"react-dom": "^19.0.0",
"react-error-boundary": "^6.0.0",
"react-hook-form": "^7.54.2",
"react-redux": "^9.2.0",
"react-resizable-panels": "^2.1.7",
"react-router-dom": "^7.12.0",
"recharts": "^2.15.1",
"sass": "^1.97.2",
"sonner": "^2.0.1",
"three": "^0.175.0",
"uuid": "^11.1.0",
"vaul": "^1.1.2",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@types/node": "^25.0.9",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"eslint": "^9.28.0",

View File

@@ -134,13 +134,9 @@
.shadow-md { @include shadow-md; }
.shadow-lg { @include shadow-lg; }
// Space between children
.space-y-2 > * + * { margin-top: spacing(2) !important; }
.space-y-3 > * + * { margin-top: spacing(3) !important; }
.space-y-4 > * + * { margin-top: spacing(4) !important; }
.space-y-6 > * + * { margin-top: spacing(6) !important; }
.space-y-8 > * + * { margin-top: spacing(8) !important; }
.space-x-2 > * + * { margin-left: spacing(2) !important; }
.space-x-3 > * + * { margin-left: spacing(3) !important; }
.space-x-4 > * + * { margin-left: spacing(4) !important; }
// Space between children - DRY loop
$space-values: (2, 3, 4, 6, 8);
@each $value in $space-values {
.space-y-#{$value} > * + * { margin-top: spacing($value) !important; }
.space-x-#{$value} > * + * { margin-left: spacing($value) !important; }
}