1
0

package.json 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "name": "frontend",
  3. "private": true,
  4. "version": "0.0.0",
  5. "type": "module",
  6. "scripts": {
  7. "dev": "vite --host",
  8. "build": "tsc -b && vite build",
  9. "lint": "eslint .",
  10. "preview": "vite preview --host",
  11. "test": "vitest run",
  12. "test:watch": "vitest",
  13. "test:ui": "vitest --ui",
  14. "test:coverage": "vitest run --coverage",
  15. "test:e2e": "playwright test",
  16. "test:e2e:ui": "playwright test --ui"
  17. },
  18. "dependencies": {
  19. "@dnd-kit/core": "^6.3.1",
  20. "@dnd-kit/sortable": "^10.0.0",
  21. "@dnd-kit/utilities": "^3.2.2",
  22. "@radix-ui/react-accordion": "^1.2.12",
  23. "@radix-ui/react-dialog": "^1.1.15",
  24. "@radix-ui/react-label": "^2.1.8",
  25. "@radix-ui/react-popover": "^1.1.15",
  26. "@radix-ui/react-progress": "^1.1.8",
  27. "@radix-ui/react-radio-group": "^1.3.8",
  28. "@radix-ui/react-select": "^2.2.6",
  29. "@radix-ui/react-separator": "^1.1.8",
  30. "@radix-ui/react-slider": "^1.3.6",
  31. "@radix-ui/react-slot": "^1.2.4",
  32. "@radix-ui/react-switch": "^1.2.6",
  33. "@radix-ui/react-tabs": "^1.1.13",
  34. "@radix-ui/react-tooltip": "^1.2.8",
  35. "@tailwindcss/postcss": "^4.1.18",
  36. "@tanstack/react-query": "^5.90.16",
  37. "motion": "^12.27.1",
  38. "next-themes": "^0.4.6",
  39. "react": "^19.2.0",
  40. "react-color": "^2.19.3",
  41. "react-colorful": "^5.6.1",
  42. "react-dom": "^19.2.0",
  43. "react-resizable-panels": "^4.4.0",
  44. "react-router-dom": "^7.12.0",
  45. "sonner": "^2.0.7",
  46. "zustand": "^5.0.9"
  47. },
  48. "devDependencies": {
  49. "@eslint/js": "^9.39.1",
  50. "@playwright/test": "^1.58.0",
  51. "@testing-library/jest-dom": "^6.9.1",
  52. "@testing-library/react": "^16.3.2",
  53. "@testing-library/user-event": "^14.6.1",
  54. "@types/node": "^24.10.4",
  55. "@types/react": "^19.2.5",
  56. "@types/react-color": "^3.0.13",
  57. "@types/react-dom": "^19.2.3",
  58. "@vitejs/plugin-react": "^5.1.1",
  59. "@vitest/coverage-v8": "^3.2.4",
  60. "@vitest/ui": "^3.2.4",
  61. "autoprefixer": "^10.4.23",
  62. "class-variance-authority": "^0.7.1",
  63. "clsx": "^2.1.1",
  64. "eslint": "^9.39.1",
  65. "eslint-plugin-react-hooks": "^7.0.1",
  66. "eslint-plugin-react-refresh": "^0.4.24",
  67. "globals": "^16.5.0",
  68. "jsdom": "^27.0.1",
  69. "lucide-react": "^0.562.0",
  70. "msw": "^2.12.7",
  71. "postcss": "^8.5.6",
  72. "shadcn": "^3.7.0",
  73. "tailwind-merge": "^3.4.0",
  74. "tailwindcss": "^4.1.18",
  75. "tailwindcss-animate": "^1.0.7",
  76. "typescript": "~5.9.3",
  77. "typescript-eslint": "^8.46.4",
  78. "vite": "^7.2.4",
  79. "vite-plugin-pwa": "^1.2.0",
  80. "vitest": "^3.2.4"
  81. }
  82. }