2026-04-20 15:10:54 +02:00
|
|
|
{
|
|
|
|
|
"name": "roboco-panel",
|
2026-06-25 21:11:36 +02:00
|
|
|
"version": "0.12.0",
|
2026-04-20 15:10:54 +02:00
|
|
|
"private": true,
|
2026-06-11 23:28:59 +02:00
|
|
|
"packageManager": "pnpm@10.25.0",
|
2026-04-20 15:10:54 +02:00
|
|
|
"scripts": {
|
|
|
|
|
"dev": "next dev",
|
|
|
|
|
"build": "next build",
|
|
|
|
|
"start": "next start",
|
2026-06-18 03:33:47 +02:00
|
|
|
"lint": "eslint",
|
|
|
|
|
"typecheck": "tsc --noEmit",
|
|
|
|
|
"test": "vitest run --coverage",
|
|
|
|
|
"test:watch": "vitest"
|
2026-04-20 15:10:54 +02:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"@dnd-kit/core": "^6.3.1",
|
|
|
|
|
"@dnd-kit/sortable": "^10.0.0",
|
|
|
|
|
"@dnd-kit/utilities": "^3.2.2",
|
|
|
|
|
"@hookform/resolvers": "^5.2.2",
|
|
|
|
|
"@radix-ui/react-alert-dialog": "^1.1.15",
|
|
|
|
|
"@radix-ui/react-avatar": "^1.1.11",
|
|
|
|
|
"@radix-ui/react-checkbox": "^1.3.3",
|
|
|
|
|
"@radix-ui/react-collapsible": "^1.1.12",
|
|
|
|
|
"@radix-ui/react-dialog": "^1.1.15",
|
|
|
|
|
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
|
|
|
"@radix-ui/react-label": "^2.1.8",
|
|
|
|
|
"@radix-ui/react-popover": "^1.1.15",
|
|
|
|
|
"@radix-ui/react-progress": "^1.1.8",
|
|
|
|
|
"@radix-ui/react-scroll-area": "^1.2.10",
|
|
|
|
|
"@radix-ui/react-select": "^2.2.6",
|
|
|
|
|
"@radix-ui/react-separator": "^1.1.8",
|
|
|
|
|
"@radix-ui/react-slot": "^1.2.4",
|
|
|
|
|
"@radix-ui/react-switch": "^1.2.6",
|
|
|
|
|
"@radix-ui/react-tabs": "^1.1.13",
|
|
|
|
|
"@radix-ui/react-tooltip": "^1.2.8",
|
|
|
|
|
"@tailwindcss/typography": "^0.5.19",
|
|
|
|
|
"@tanstack/react-query": "^5.90.16",
|
|
|
|
|
"axios": "^1.13.2",
|
|
|
|
|
"class-variance-authority": "^0.7.1",
|
|
|
|
|
"clsx": "^2.1.1",
|
|
|
|
|
"date-fns": "^4.1.0",
|
|
|
|
|
"lucide-react": "^0.562.0",
|
|
|
|
|
"next": "16.1.1",
|
|
|
|
|
"next-themes": "^0.4.6",
|
|
|
|
|
"react": "19.2.3",
|
|
|
|
|
"react-dom": "19.2.3",
|
|
|
|
|
"react-hook-form": "^7.71.0",
|
|
|
|
|
"react-markdown": "^10.1.0",
|
2026-06-10 14:38:44 +02:00
|
|
|
"recharts": "^3.8.1",
|
2026-04-20 15:10:54 +02:00
|
|
|
"remark-gfm": "^4.0.1",
|
|
|
|
|
"sonner": "^2.0.7",
|
|
|
|
|
"tailwind-merge": "^3.4.0",
|
|
|
|
|
"zod": "^4.3.5",
|
|
|
|
|
"zustand": "^5.0.10"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@tailwindcss/postcss": "^4",
|
|
|
|
|
"@tanstack/react-query-devtools": "^5.91.2",
|
2026-06-18 03:33:47 +02:00
|
|
|
"@testing-library/jest-dom": "^6.9.1",
|
|
|
|
|
"@testing-library/react": "^16.3.2",
|
|
|
|
|
"@testing-library/user-event": "^14.6.1",
|
2026-04-20 15:10:54 +02:00
|
|
|
"@types/node": "^25.0.8",
|
|
|
|
|
"@types/react": "^19.2.8",
|
|
|
|
|
"@types/react-dom": "^19",
|
2026-06-18 03:33:47 +02:00
|
|
|
"@vitest/coverage-v8": "^4.1.9",
|
2026-04-20 15:10:54 +02:00
|
|
|
"eslint": "^9",
|
|
|
|
|
"eslint-config-next": "16.1.1",
|
2026-06-18 03:33:47 +02:00
|
|
|
"jsdom": "^29.1.1",
|
2026-04-20 15:10:54 +02:00
|
|
|
"tailwindcss": "^4",
|
|
|
|
|
"tw-animate-css": "^1.4.0",
|
2026-06-18 03:33:47 +02:00
|
|
|
"typescript": "^5",
|
|
|
|
|
"vitest": "^4.1.9"
|
2026-05-09 03:15:09 +02:00
|
|
|
},
|
|
|
|
|
"pnpm": {
|
|
|
|
|
"onlyBuiltDependencies": [
|
|
|
|
|
"sharp",
|
|
|
|
|
"unrs-resolver"
|
|
|
|
|
]
|
2026-04-20 15:10:54 +02:00
|
|
|
}
|
|
|
|
|
}
|