Files
Minikura/apps/web/package.json
T

70 lines
2.1 KiB
JSON
Raw Normal View History

2024-09-21 13:28:02 +07:00
{
2026-02-13 15:52:13 +07:00
"name": "@minikura/web",
"module": "index.ts",
"type": "module",
"scripts": {
"dev": "PORT=3001 next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "biome lint .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
2026-08-13 01:57:43 +07:00
"@types/bun": "^1.3.14",
"@types/react": "^19.2.18",
2026-02-13 15:52:13 +07:00
"tw-animate-css": "^1.4.0"
},
"peerDependencies": {
2026-08-13 01:57:43 +07:00
"typescript": "^7.0.2"
2026-02-13 15:52:13 +07:00
},
"dependencies": {
2026-08-13 01:57:43 +07:00
"@elysiajs/eden": "^1.4.9",
2026-08-13 03:29:33 +07:00
"@gsap/react": "^2.1.2",
2026-08-13 01:57:43 +07:00
"@hookform/resolvers": "^5.7.1",
2026-02-13 15:52:13 +07:00
"@minikura/api": "workspace:*",
"@minikura/backend": "workspace:*",
"@minikura/shared": "workspace:*",
2026-08-13 01:57:43 +07:00
"@radix-ui/react-accordion": "^1.2.20",
"@radix-ui/react-avatar": "^1.2.6",
"@radix-ui/react-checkbox": "^1.3.11",
"@radix-ui/react-dialog": "^1.1.23",
"@radix-ui/react-dropdown-menu": "^2.1.24",
"@radix-ui/react-label": "^2.1.15",
"@radix-ui/react-popover": "^1.1.23",
"@radix-ui/react-select": "^2.3.7",
"@radix-ui/react-separator": "^1.1.15",
"@radix-ui/react-slot": "^1.3.3",
"@radix-ui/react-switch": "^1.3.7",
"@radix-ui/react-tabs": "^1.1.21",
"@radix-ui/react-tooltip": "^1.2.16",
"@tailwindcss/postcss": "^4.3.3",
2026-02-13 15:52:13 +07:00
"@xterm/addon-clipboard": "^0.2.0",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-image": "^0.9.0",
"@xterm/addon-ligatures": "^0.10.0",
"@xterm/addon-search": "^0.16.0",
"@xterm/addon-unicode11": "^0.9.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/addon-webgl": "^0.19.0",
"@xterm/xterm": "^6.0.0",
2026-08-13 01:57:43 +07:00
"@xyflow/react": "^12.11.3",
"autoprefixer": "^10.5.4",
"better-auth": "^1.6.27",
2026-02-13 15:52:13 +07:00
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
2026-08-13 01:57:43 +07:00
"elysia": "^1.4.29",
2026-08-13 03:29:33 +07:00
"gsap": "^3.15.0",
2026-08-13 01:57:43 +07:00
"lucide-react": "^1.31.0",
"next": "^16.3.0",
2026-08-13 02:51:13 +07:00
"next-themes": "^0.4.6",
2026-08-13 01:57:43 +07:00
"postcss": "^8.5.26",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-hook-form": "^7.85.0",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.3",
"zod": "^4.4.3"
2026-02-13 15:52:13 +07:00
}
2024-09-21 13:28:02 +07:00
}