2025-08-12 11:28:36 +08:00
|
|
|
{
|
|
|
|
"name": "@buster-app/web-tss",
|
|
|
|
"private": true,
|
|
|
|
"type": "module",
|
2025-08-16 05:27:57 +08:00
|
|
|
"version": "0.0.1",
|
2025-08-12 11:28:36 +08:00
|
|
|
"scripts": {
|
2025-09-03 04:21:41 +08:00
|
|
|
"build": "cross-env NODE_OPTIONS=--max-old-space-size=8192 vite build -- --typecheck",
|
2025-09-05 12:29:33 +08:00
|
|
|
"build:fix": "pnpm build:no-typecheck && pnpm run build:fix-react-symlink",
|
2025-09-03 04:42:43 +08:00
|
|
|
"build:local": "cross-env NODE_OPTIONS=--max-old-space-size=8192 vite build -- --typecheck --local",
|
2025-09-04 05:36:46 +08:00
|
|
|
"build:no-typecheck": "cross-env NODE_OPTIONS=--max-old-space-size=8192 vite build",
|
2025-09-05 12:29:33 +08:00
|
|
|
"build-storybook": "storybook build",
|
|
|
|
"build:visualize": "npx vite-bundle-visualizer",
|
|
|
|
"deploy:dev": "pnpm run build && npx wrangler deploy .output/server/index.mjs --env dev --assets .output/public",
|
|
|
|
"deploy:production": "pnpm run build && npx wrangler deploy .output/server/index.mjs --env production --assets .output/public",
|
|
|
|
"deploy:staging": "pnpm run build && npx wrangler deploy .output/server/index.mjs --env staging --assets .output/public",
|
|
|
|
"dev": "vite dev --port 3000",
|
|
|
|
"dev:fast": "pnpm run build:local && pnpm run start:bun",
|
|
|
|
"generate-routes": "tsr generate",
|
|
|
|
"lint": "biome check --write",
|
2025-08-12 11:28:36 +08:00
|
|
|
"serve": "vite preview",
|
2025-09-05 12:29:33 +08:00
|
|
|
"start": "echo 'For Cloudflare deployment, no start command is needed. Use start:local for local builds or start:wrangler for Cloudflare Workers dev'",
|
|
|
|
"start:bun": "bun .output/server/index.mjs",
|
|
|
|
"storybook": "storybook dev -p 6006",
|
2025-08-12 11:28:36 +08:00
|
|
|
"test": "vitest run",
|
2025-09-05 12:29:33 +08:00
|
|
|
"test:ui": "vitest --ui",
|
|
|
|
"test:unit": "pnpm run test",
|
|
|
|
"test:watch": "vitest --watch",
|
2025-08-13 12:05:05 +08:00
|
|
|
"typecheck": "tsc --noEmit",
|
2025-09-05 12:29:33 +08:00
|
|
|
"typecheck:watch": "tsc --noEmit --watch"
|
2025-08-12 11:28:36 +08:00
|
|
|
},
|
2025-08-13 13:45:55 +08:00
|
|
|
"peerDependencies": {
|
|
|
|
"@types/react": "^19.1.10",
|
2025-08-13 22:04:30 +08:00
|
|
|
"@types/react-dom": "^19.1.7",
|
|
|
|
"react": "^19.1.1",
|
|
|
|
"react-dom": "^19.1.1"
|
2025-08-13 13:45:55 +08:00
|
|
|
},
|
2025-08-12 11:28:36 +08:00
|
|
|
"dependencies": {
|
2025-09-02 13:00:17 +08:00
|
|
|
"@ariakit/react": "^0.4.18",
|
2025-08-12 11:28:36 +08:00
|
|
|
"@buster/server-shared": "workspace:*",
|
|
|
|
"@buster/typescript-config": "workspace:*",
|
2025-08-14 06:48:36 +08:00
|
|
|
"@dnd-kit/core": "^6.3.1",
|
|
|
|
"@dnd-kit/modifiers": "^9.0.0",
|
|
|
|
"@dnd-kit/sortable": "^10.0.0",
|
|
|
|
"@dnd-kit/utilities": "^3.2.2",
|
2025-09-04 00:33:17 +08:00
|
|
|
"@electric-sql/client": "catalog:",
|
2025-08-30 04:15:12 +08:00
|
|
|
"@electric-sql/react": "^1.0.9",
|
2025-09-02 13:00:17 +08:00
|
|
|
"@emoji-mart/data": "^1.2.1",
|
2025-09-02 10:45:51 +08:00
|
|
|
"@faker-js/faker": "^10.0.0",
|
2025-09-03 03:15:36 +08:00
|
|
|
"@modelcontextprotocol/sdk": "^1.17.5",
|
2025-08-13 04:07:06 +08:00
|
|
|
"@monaco-editor/react": "^4.7.0",
|
2025-09-02 13:00:17 +08:00
|
|
|
"@platejs/ai": "^49.2.15",
|
2025-09-03 03:15:36 +08:00
|
|
|
"@platejs/autoformat": "^49.0.0",
|
|
|
|
"@platejs/basic-nodes": "^49.0.0",
|
|
|
|
"@platejs/basic-styles": "49.0.0",
|
2025-09-02 13:00:17 +08:00
|
|
|
"@platejs/callout": "^49.0.0",
|
|
|
|
"@platejs/caption": "^49.0.0",
|
|
|
|
"@platejs/code-block": "^49.0.0",
|
|
|
|
"@platejs/combobox": "^49.0.0",
|
|
|
|
"@platejs/comment": "^49.0.0",
|
2025-09-03 03:15:36 +08:00
|
|
|
"@platejs/date": "^49.0.2",
|
2025-09-03 00:00:00 +08:00
|
|
|
"@platejs/dnd": "^49.2.22",
|
2025-09-02 13:00:17 +08:00
|
|
|
"@platejs/docx": "^49.0.0",
|
|
|
|
"@platejs/emoji": "^49.0.0",
|
|
|
|
"@platejs/floating": "^49.0.0",
|
2025-09-03 03:15:36 +08:00
|
|
|
"@platejs/indent": "^49.0.0",
|
2025-09-02 13:00:17 +08:00
|
|
|
"@platejs/juice": "^49.0.0",
|
2025-09-03 03:15:36 +08:00
|
|
|
"@platejs/layout": "^49.2.1",
|
|
|
|
"@platejs/link": "^49.1.1",
|
2025-09-03 23:56:45 +08:00
|
|
|
"@platejs/list": "49.2.17",
|
|
|
|
"@platejs/markdown": "^49.2.15",
|
2025-09-03 03:15:36 +08:00
|
|
|
"@platejs/math": "^49.0.0",
|
|
|
|
"@platejs/media": "49.0.0",
|
2025-09-02 13:00:17 +08:00
|
|
|
"@platejs/mention": "^49.0.0",
|
2025-09-02 12:26:08 +08:00
|
|
|
"@platejs/resizable": "^49.0.0",
|
|
|
|
"@platejs/selection": "^49.2.4",
|
2025-09-02 13:00:17 +08:00
|
|
|
"@platejs/slash-command": "^49.0.0",
|
|
|
|
"@platejs/suggestion": "^49.0.0",
|
2025-09-03 03:15:36 +08:00
|
|
|
"@platejs/table": "49.1.13",
|
|
|
|
"@platejs/toc": "^49.0.0",
|
|
|
|
"@platejs/toggle": "^49.0.0",
|
2025-09-03 00:00:00 +08:00
|
|
|
"@radix-ui/react-alert-dialog": "^1.1.15",
|
2025-08-16 00:44:19 +08:00
|
|
|
"@radix-ui/react-avatar": "^1.1.10",
|
2025-08-16 02:15:46 +08:00
|
|
|
"@radix-ui/react-checkbox": "^1.3.3",
|
|
|
|
"@radix-ui/react-collapsible": "^1.1.12",
|
|
|
|
"@radix-ui/react-context-menu": "^2.2.16",
|
|
|
|
"@radix-ui/react-dialog": "^1.1.15",
|
|
|
|
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
2025-08-12 11:28:36 +08:00
|
|
|
"@radix-ui/react-label": "^2.1.7",
|
2025-08-16 02:15:46 +08:00
|
|
|
"@radix-ui/react-popover": "^1.1.15",
|
|
|
|
"@radix-ui/react-scroll-area": "^1.2.10",
|
|
|
|
"@radix-ui/react-select": "^2.2.6",
|
2025-08-13 11:54:24 +08:00
|
|
|
"@radix-ui/react-separator": "^1.1.7",
|
2025-08-16 02:15:46 +08:00
|
|
|
"@radix-ui/react-slider": "^1.3.6",
|
2025-08-12 11:28:36 +08:00
|
|
|
"@radix-ui/react-slot": "^1.2.3",
|
2025-08-16 02:15:46 +08:00
|
|
|
"@radix-ui/react-switch": "^1.2.6",
|
2025-08-19 00:45:44 +08:00
|
|
|
"@radix-ui/react-tabs": "^1.1.13",
|
2025-09-03 00:00:00 +08:00
|
|
|
"@radix-ui/react-toolbar": "^1.1.11",
|
2025-08-16 02:15:46 +08:00
|
|
|
"@radix-ui/react-tooltip": "^1.2.8",
|
2025-08-13 04:07:06 +08:00
|
|
|
"@radix-ui/react-visually-hidden": "^1.2.3",
|
2025-09-03 23:56:45 +08:00
|
|
|
"@shikijs/langs": "^3.12.2",
|
|
|
|
"@shikijs/themes": "^3.12.2",
|
2025-08-14 04:10:19 +08:00
|
|
|
"@supabase/auth-js": "^2.71.1",
|
2025-08-30 04:15:12 +08:00
|
|
|
"@supabase/ssr": "^0.7.0",
|
2025-09-03 23:56:45 +08:00
|
|
|
"@supabase/supabase-js": "catalog:",
|
2025-08-12 11:28:36 +08:00
|
|
|
"@t3-oss/env-core": "^0.13.8",
|
2025-09-05 03:39:09 +08:00
|
|
|
"@tailwindcss/vite": "^4.1.13",
|
|
|
|
"@tanstack/db": "^0.1.12",
|
2025-08-12 11:28:36 +08:00
|
|
|
"@tanstack/match-sorter-utils": "^8.19.4",
|
2025-09-05 03:39:09 +08:00
|
|
|
"@tanstack/query-async-storage-persister": "^5.86.0",
|
2025-08-13 22:42:14 +08:00
|
|
|
"@tanstack/query-db-collection": "0.1.1",
|
2025-09-05 03:39:09 +08:00
|
|
|
"@tanstack/query-sync-storage-persister": "^5.86.0",
|
|
|
|
"@tanstack/react-db": "0.1.12",
|
|
|
|
"@tanstack/react-devtools": "^0.6.3",
|
2025-08-30 04:15:12 +08:00
|
|
|
"@tanstack/react-form": "^1.19.3",
|
2025-09-05 03:39:09 +08:00
|
|
|
"@tanstack/react-query": "^5.86.0",
|
|
|
|
"@tanstack/react-query-devtools": "^5.86.0",
|
|
|
|
"@tanstack/react-query-persist-client": "^5.86.0",
|
|
|
|
"@tanstack/react-router": "^1.131.35",
|
|
|
|
"@tanstack/react-router-devtools": "^1.131.35",
|
|
|
|
"@tanstack/react-router-ssr-query": "^1.131.35",
|
2025-08-12 11:28:36 +08:00
|
|
|
"@tanstack/react-router-with-query": "^1.130.17",
|
2025-09-05 03:39:09 +08:00
|
|
|
"@tanstack/react-start": "^1.131.35",
|
2025-08-30 04:15:12 +08:00
|
|
|
"@tanstack/react-store": "^0.7.4",
|
2025-08-12 11:28:36 +08:00
|
|
|
"@tanstack/react-table": "^8.21.3",
|
2025-08-19 00:45:44 +08:00
|
|
|
"@tanstack/react-virtual": "^3.13.12",
|
2025-09-05 03:39:09 +08:00
|
|
|
"@tanstack/router-plugin": "^1.131.35",
|
2025-08-30 04:15:12 +08:00
|
|
|
"@tanstack/store": "^0.7.4",
|
|
|
|
"@testing-library/jest-dom": "^6.8.0",
|
2025-09-02 13:00:17 +08:00
|
|
|
"@udecode/cn": "^49.0.15",
|
2025-09-03 00:00:00 +08:00
|
|
|
"@uploadthing/react": "^7.3.3",
|
2025-09-03 23:56:45 +08:00
|
|
|
"axios": "catalog:",
|
2025-08-13 03:21:24 +08:00
|
|
|
"canvas-confetti": "^1.9.3",
|
2025-08-14 23:11:26 +08:00
|
|
|
"chart.js": "4.5.0",
|
2025-08-19 00:45:44 +08:00
|
|
|
"chartjs-adapter-dayjs-4": "^1.0.4",
|
|
|
|
"chartjs-plugin-annotation": "^3.1.0",
|
|
|
|
"chartjs-plugin-datalabels": "^2.2.0",
|
|
|
|
"chartjs-plugin-deferred": "^2.0.0",
|
2025-08-12 11:28:36 +08:00
|
|
|
"class-variance-authority": "^0.7.1",
|
|
|
|
"clsx": "^2.1.1",
|
2025-08-13 04:07:06 +08:00
|
|
|
"cmdk": "^1.1.1",
|
2025-09-02 10:45:51 +08:00
|
|
|
"dayjs": "^1.11.18",
|
2025-08-18 22:43:55 +08:00
|
|
|
"font-color-contrast": "^11.1.0",
|
2025-08-13 04:07:06 +08:00
|
|
|
"framer-motion": "^12.23.12",
|
2025-08-21 05:33:06 +08:00
|
|
|
"html2canvas-pro": "^1.5.11",
|
2025-08-13 05:57:35 +08:00
|
|
|
"js-cookie": "^3.0.5",
|
2025-08-15 08:33:09 +08:00
|
|
|
"js-yaml": "^4.1.0",
|
2025-08-13 03:21:24 +08:00
|
|
|
"jwt-decode": "^4.0.0",
|
2025-08-30 04:15:12 +08:00
|
|
|
"ky": "^1.9.1",
|
2025-08-13 00:30:48 +08:00
|
|
|
"lodash": "^4.17.21",
|
2025-09-02 13:00:17 +08:00
|
|
|
"lowlight": "^3.3.0",
|
2025-09-03 04:37:52 +08:00
|
|
|
"monaco-editor": "^0.52.2",
|
2025-08-13 04:07:06 +08:00
|
|
|
"monaco-sql-languages": "^0.15.1",
|
|
|
|
"monaco-yaml": "^5.4.0",
|
2025-08-14 23:11:26 +08:00
|
|
|
"mutative": "^1.2.0",
|
2025-09-03 03:15:36 +08:00
|
|
|
"platejs": "49.2.21",
|
2025-08-13 04:07:06 +08:00
|
|
|
"pluralize": "^8.0.0",
|
2025-09-03 23:56:45 +08:00
|
|
|
"posthog-js": "^1.261.6",
|
2025-09-02 13:22:46 +08:00
|
|
|
"react": "^19.1.1",
|
2025-08-18 22:43:55 +08:00
|
|
|
"react-colorful": "^5.6.1",
|
2025-08-21 23:51:38 +08:00
|
|
|
"react-day-picker": "^8.10.1",
|
2025-09-02 13:00:17 +08:00
|
|
|
"react-dnd": "^16.0.1",
|
|
|
|
"react-dnd-html5-backend": "^16.0.1",
|
2025-08-12 11:28:36 +08:00
|
|
|
"react-dom": "^19.1.1",
|
2025-08-19 00:45:44 +08:00
|
|
|
"react-error-boundary": "^6.0.0",
|
2025-08-12 11:28:36 +08:00
|
|
|
"react-hotkeys-hook": "^5.1.0",
|
2025-09-03 00:00:00 +08:00
|
|
|
"react-lite-youtube-embed": "^2.5.6",
|
2025-08-12 11:28:36 +08:00
|
|
|
"react-markdown": "^10.1.0",
|
2025-09-03 00:00:00 +08:00
|
|
|
"react-player": "^3.3.2",
|
2025-09-02 01:00:25 +08:00
|
|
|
"react-textarea-autosize": "^8.5.9",
|
2025-08-12 11:28:36 +08:00
|
|
|
"remark-gfm": "^4.0.1",
|
2025-08-13 22:42:14 +08:00
|
|
|
"scheduler": "^0.26.0",
|
2025-09-03 23:56:45 +08:00
|
|
|
"shiki": "^3.12.2",
|
2025-08-13 01:22:17 +08:00
|
|
|
"sonner": "^2.0.7",
|
2025-08-12 11:28:36 +08:00
|
|
|
"tailwind-merge": "^3.3.1",
|
2025-08-13 06:20:09 +08:00
|
|
|
"tailwind-scrollbar": "^4.0.2",
|
2025-09-05 03:39:09 +08:00
|
|
|
"tailwindcss": "^4.1.13",
|
2025-09-03 23:56:45 +08:00
|
|
|
"tw-animate-css": "^1.3.8",
|
2025-09-03 00:00:00 +08:00
|
|
|
"uploadthing": "^7.7.4",
|
2025-08-13 01:22:17 +08:00
|
|
|
"use-context-selector": "^2.0.0",
|
2025-09-02 13:00:17 +08:00
|
|
|
"use-file-picker": "^2.1.4",
|
2025-08-19 00:45:44 +08:00
|
|
|
"utility-types": "^3.11.0",
|
2025-08-17 01:21:08 +08:00
|
|
|
"uuid": "catalog:",
|
2025-09-02 10:45:51 +08:00
|
|
|
"virtua": "^0.42.0",
|
2025-08-12 11:28:36 +08:00
|
|
|
"vite-tsconfig-paths": "^5.1.4",
|
2025-08-19 00:45:44 +08:00
|
|
|
"vitest-browser-react": "^1.0.1",
|
2025-08-17 01:21:08 +08:00
|
|
|
"zod": "catalog:"
|
2025-08-12 11:28:36 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2025-09-03 00:00:00 +08:00
|
|
|
"@biomejs/biome": "2.2.2",
|
2025-08-30 04:15:12 +08:00
|
|
|
"@chromatic-com/storybook": "^4.1.1",
|
2025-09-03 00:00:00 +08:00
|
|
|
"@storybook/addon-a11y": "^9.1.4",
|
|
|
|
"@storybook/addon-docs": "^9.1.4",
|
|
|
|
"@storybook/addon-vitest": "^9.1.4",
|
|
|
|
"@storybook/react-vite": "^9.1.4",
|
2025-08-30 04:15:12 +08:00
|
|
|
"@tanstack/devtools-event-client": "^0.2.3",
|
2025-09-05 03:39:09 +08:00
|
|
|
"@tanstack/router-cli": "^1.131.35",
|
2025-08-12 11:28:36 +08:00
|
|
|
"@testing-library/dom": "^10.4.1",
|
|
|
|
"@testing-library/react": "^16.3.0",
|
2025-08-13 03:21:24 +08:00
|
|
|
"@types/canvas-confetti": "^1.9.0",
|
2025-08-13 05:57:35 +08:00
|
|
|
"@types/js-cookie": "^3.0.6",
|
2025-08-16 02:15:46 +08:00
|
|
|
"@types/js-yaml": "^4.0.9",
|
2025-08-13 03:21:24 +08:00
|
|
|
"@types/lodash": "^4.17.20",
|
2025-08-13 04:07:06 +08:00
|
|
|
"@types/pluralize": "^0.0.33",
|
2025-08-30 04:15:12 +08:00
|
|
|
"@types/react": "^19.1.12",
|
|
|
|
"@types/react-dom": "^19.1.9",
|
|
|
|
"@vitejs/plugin-react": "^5.0.2",
|
2025-08-13 22:04:30 +08:00
|
|
|
"@vitest/browser": "3.2.4",
|
|
|
|
"@vitest/coverage-v8": "3.2.4",
|
2025-08-12 11:28:36 +08:00
|
|
|
"@vitest/ui": "3.2.4",
|
2025-09-03 04:21:41 +08:00
|
|
|
"cross-env": "^10.0.0",
|
2025-08-12 11:28:36 +08:00
|
|
|
"jsdom": "^26.1.0",
|
2025-09-03 01:16:56 +08:00
|
|
|
"msw": "^2.11.1",
|
2025-08-30 04:15:12 +08:00
|
|
|
"playwright": "^1.55.0",
|
2025-09-04 00:14:41 +08:00
|
|
|
"sass": "^1.92.0",
|
2025-09-03 00:00:00 +08:00
|
|
|
"storybook": "^9.1.4",
|
2025-08-17 01:21:08 +08:00
|
|
|
"vite": "catalog:",
|
2025-08-30 04:15:12 +08:00
|
|
|
"vite-plugin-checker": "^0.10.3",
|
2025-09-03 01:16:56 +08:00
|
|
|
"vite-plugin-monaco-editor": "^1.1.0",
|
2025-08-12 11:28:36 +08:00
|
|
|
"vite-tsconfig-paths": "catalog:",
|
2025-08-17 01:21:08 +08:00
|
|
|
"vitest": "catalog:",
|
2025-08-13 22:04:30 +08:00
|
|
|
"web-vitals": "^5.1.0"
|
2025-08-12 11:28:36 +08:00
|
|
|
}
|
|
|
|
}
|