package.json 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. {
  2. "name": "@vendure/dashboard",
  3. "private": false,
  4. "version": "3.2.2",
  5. "type": "module",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/vendure-ecommerce/vendure"
  9. },
  10. "homepage": "https://www.vendure.io",
  11. "funding": "https://github.com/sponsors/michaelbromley",
  12. "publishConfig": {
  13. "access": "public"
  14. },
  15. "scripts": {
  16. "dev": "vite",
  17. "build": "tsc --project tsconfig.plugin.json",
  18. "watch": "tsc --project tsconfig.plugin.json --watch",
  19. "test": "vitest run",
  20. "lint": "eslint .",
  21. "preview": "vite preview",
  22. "generate-index": "node ./generate-index.js"
  23. },
  24. "module": "./src/lib/index.ts",
  25. "main": "./src/lib/index.ts",
  26. "types": "./src/lib/index.d.ts",
  27. "exports": {
  28. ".": {
  29. "types": "./src/lib/index.d.ts",
  30. "import": "./src/lib/index.ts",
  31. "require": "./src/lib/index.ts"
  32. },
  33. "./plugin": {
  34. "types": "./dist/plugin/index.d.ts",
  35. "import": "./dist/plugin/index.js",
  36. "require": "./dist/plugin/index.js"
  37. }
  38. },
  39. "files": [
  40. "dist",
  41. "src",
  42. "vite",
  43. "lingui.config.js",
  44. "index.html"
  45. ],
  46. "dependencies": {
  47. "@dnd-kit/core": "^6.3.1",
  48. "@dnd-kit/sortable": "^10.0.0",
  49. "@hookform/resolvers": "^4.1.3",
  50. "@lingui/babel-plugin-lingui-macro": "^5.2.0",
  51. "@lingui/cli": "^5.2.0",
  52. "@lingui/core": "^5.2.0",
  53. "@lingui/react": "^5.2.0",
  54. "@lingui/vite-plugin": "^5.2.0",
  55. "@radix-ui/react-accordion": "^1.2.3",
  56. "@radix-ui/react-alert-dialog": "^1.1.6",
  57. "@radix-ui/react-avatar": "^1.1.3",
  58. "@radix-ui/react-checkbox": "^1.1.4",
  59. "@radix-ui/react-collapsible": "^1.1.3",
  60. "@radix-ui/react-dialog": "^1.1.6",
  61. "@radix-ui/react-dropdown-menu": "^2.1.6",
  62. "@radix-ui/react-hover-card": "^1.1.6",
  63. "@radix-ui/react-label": "^2.1.2",
  64. "@radix-ui/react-popover": "^1.1.6",
  65. "@radix-ui/react-scroll-area": "^1.2.3",
  66. "@radix-ui/react-select": "^2.1.6",
  67. "@radix-ui/react-separator": "^1.1.2",
  68. "@radix-ui/react-slot": "^1.1.2",
  69. "@radix-ui/react-switch": "^1.1.3",
  70. "@radix-ui/react-tabs": "^1.1.3",
  71. "@radix-ui/react-tooltip": "^1.1.8",
  72. "@tailwindcss/vite": "^4.0.7",
  73. "@tanstack/eslint-plugin-query": "^5.66.1",
  74. "@tanstack/react-query": "^5.66.7",
  75. "@tanstack/react-query-devtools": "^5.68.0",
  76. "@tanstack/react-router": "^1.105.0",
  77. "@tanstack/react-table": "^8.21.2",
  78. "@tanstack/router-devtools": "^1.105.0",
  79. "@tanstack/router-plugin": "^1.105.0",
  80. "@tiptap/pm": "^2.11.5",
  81. "@tiptap/react": "^2.11.5",
  82. "@tiptap/starter-kit": "^2.11.5",
  83. "@types/react": "^19.0.10",
  84. "@types/react-dom": "^19.0.4",
  85. "@types/react-grid-layout": "^1.3.5",
  86. "@uidotdev/usehooks": "^2.4.1",
  87. "@vendure/common": "3.2.2",
  88. "@vendure/core": "3.2.2",
  89. "@vitejs/plugin-react": "^4.3.4",
  90. "awesome-graphql-client": "^2.1.0",
  91. "class-variance-authority": "^0.7.1",
  92. "clsx": "^2.1.1",
  93. "cmdk": "^1.0.0",
  94. "date-fns": "^3.6.0",
  95. "gql.tada": "^1.8.10",
  96. "graphql": "^16.10.0",
  97. "json-edit-react": "^1.23.1",
  98. "lucide-react": "^0.475.0",
  99. "motion": "^12.6.2",
  100. "next-themes": "^0.4.6",
  101. "react": "^19.0.0",
  102. "react-day-picker": "^8.10.1",
  103. "react-dom": "^19.0.0",
  104. "react-dropzone": "^14.3.8",
  105. "react-grid-layout": "^1.5.1",
  106. "react-hook-form": "^7.54.2",
  107. "recharts": "^2.15.1",
  108. "sonner": "^2.0.1",
  109. "tailwind-merge": "^3.0.1",
  110. "tailwindcss": "^4.0.6",
  111. "tailwindcss-animate": "^1.0.7",
  112. "tw-animate-css": "^1.2.4",
  113. "unplugin-swc": "^1.5.1",
  114. "vite": "^6.1.0",
  115. "zod": "^3.24.2"
  116. },
  117. "devDependencies": {
  118. "@eslint/js": "^9.19.0",
  119. "@types/node": "^22.13.4",
  120. "eslint": "^9.19.0",
  121. "eslint-plugin-react": "^7.37.4",
  122. "eslint-plugin-react-hooks": "^5.0.0",
  123. "eslint-plugin-react-refresh": "^0.4.18",
  124. "globals": "^15.14.0",
  125. "vite-plugin-dts": "^4.5.3"
  126. }
  127. }