xtablo-source/ui/package.json

86 lines
2.7 KiB
JSON
Raw Normal View History

2025-02-11 19:56:01 +00:00
{
"name": "ui",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
2025-07-12 17:48:47 +00:00
"dev": "vite dev",
2025-03-18 07:29:46 +00:00
"typecheck": "tsc -b",
2025-02-11 19:56:01 +00:00
"lint": "eslint .",
2025-04-08 07:43:51 +00:00
"preview": "vite preview",
2025-07-13 20:38:03 +00:00
"build:staging": "tsc -b && vite build --mode staging",
2025-07-12 17:18:43 +00:00
"build:prod": "tsc -b && vite build --mode production",
2025-07-13 20:38:03 +00:00
"deploy:staging": "pnpm run build:staging && wrangler deploy",
2025-07-16 20:28:20 +00:00
"deploy:prod": "pnpm run build:prod && wrangler deploy",
2025-07-12 17:18:43 +00:00
"cf-typegen": "wrangler types",
"test": "vitest run --mode dev",
2025-04-08 07:43:51 +00:00
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage"
2025-02-11 19:56:01 +00:00
},
"devDependencies": {
2025-07-12 17:18:43 +00:00
"@cloudflare/vite-plugin": "^1.9.4",
2025-06-23 09:34:30 +00:00
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
2025-03-18 07:29:46 +00:00
"@eslint/js": "^9.22.0",
2025-03-17 17:06:33 +00:00
"@floating-ui/react": "^0.27.4",
2025-03-17 20:20:05 +00:00
"@internationalized/date": "^3.7.0",
"@react-aria/i18n": "^3.12.7",
2025-03-17 17:06:33 +00:00
"@react-aria/toast": "^3.0.0",
"@react-stately/toast": "^3.0.0",
"@tailwindcss/container-queries": "^0.1.1",
2025-04-08 07:43:51 +00:00
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^29.5.14",
2025-03-22 09:20:15 +00:00
"@types/node": "^22.13.10",
2025-03-17 17:06:33 +00:00
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
2025-02-11 19:56:01 +00:00
"@vitejs/plugin-react": "^4.3.4",
2025-03-17 17:06:33 +00:00
"chromatic": "^11.5.0",
2025-03-18 07:29:46 +00:00
"eslint": "^9.22.0",
"eslint-plugin-react": "^7.37.4",
"globals": "^16.0.0",
2025-04-08 07:43:51 +00:00
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
2025-03-17 17:06:33 +00:00
"lucide-react": "^0.460.0",
"prettier-plugin-tailwindcss": "^0.6.11",
"react": "19.0.0",
"react-aria": "^3.38.1",
"react-aria-components": "^1.7.0",
"react-dom": "19.0.0",
"rollup-plugin-visualizer": "^5.14.0",
"tailwind-merge": "^3.0.2",
"tailwindcss": "^4.0.14",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.7.0",
2025-03-18 07:29:46 +00:00
"typescript-eslint": "^8.26.1",
2025-04-08 07:43:51 +00:00
"vite": "^6.2.2",
"vite-tsconfig-paths": "^5.1.4",
2025-07-12 17:18:43 +00:00
"vitest": "^3.1.1",
"wrangler": "^4.24.3"
2025-03-17 17:06:33 +00:00
},
"dependencies": {
2025-07-16 20:28:20 +00:00
"@datadog/browser-rum": "^6.13.0",
"@datadog/browser-rum-react": "^6.13.0",
2025-03-17 20:20:05 +00:00
"@react-stately/calendar": "^3.7.1",
2025-03-25 08:17:53 +00:00
"@supabase/supabase-js": "^2.49.3",
2025-03-17 20:20:05 +00:00
"@tailwindcss/vite": "^4.0.14",
2025-03-22 09:20:15 +00:00
"@tanstack/react-query": "^5.69.0",
2025-03-17 20:55:15 +00:00
"@types/react-router-dom": "^5.3.3",
2025-04-06 16:21:25 +00:00
"ag-grid-community": "^33.2.1",
"ag-grid-react": "^33.2.1",
2025-03-22 09:20:15 +00:00
"axios": "^1.8.4",
2025-09-15 07:01:08 +00:00
"date-fns": "^4.1.0",
"jspdf": "^3.0.1",
"jwt-decode": "^4.0.0",
2025-03-17 20:55:15 +00:00
"react-router-dom": "^7.3.0",
"react-stately": "^3.36.1",
2025-06-17 20:44:30 +00:00
"stream-chat": "^9.6.1",
"stream-chat-react": "^13.1.0",
2025-04-12 20:46:49 +00:00
"ts-pattern": "^5.6.2",
2025-06-23 09:34:30 +00:00
"uuid": "^11.1.0",
"zustand": "^5.0.5"
2025-02-11 19:56:01 +00:00
}
}