package.json 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. {
  2. "name": "@vendure/dashboard",
  3. "private": true,
  4. "version": "0.0.0",
  5. "type": "module",
  6. "scripts": {
  7. "dev": "vite",
  8. "build:lib": "tsc --project tsconfig.lib.json",
  9. "build:plugin": "tsc --project tsconfig.plugin.json",
  10. "watch:plugin": "tsc --project tsconfig.plugin.json --watch",
  11. "lint": "eslint .",
  12. "preview": "vite preview"
  13. },
  14. "module": "./src/index.ts",
  15. "main": "./src/index.ts",
  16. "exports": {
  17. ".": "./src/index.ts",
  18. "./plugin": "./dist/plugin/index.js"
  19. },
  20. "files": [
  21. "dist",
  22. "src",
  23. "lingui.config.js"
  24. ],
  25. "dependencies": {
  26. "@atlaskit/pragmatic-drag-and-drop": "^1.5.1",
  27. "@dnd-kit/core": "^6.3.1",
  28. "@dnd-kit/sortable": "^10.0.0",
  29. "@hookform/resolvers": "^4.1.3",
  30. "@lingui/core": "^5.2.0",
  31. "@lingui/react": "^5.2.0",
  32. "@radix-ui/react-alert-dialog": "^1.1.6",
  33. "@radix-ui/react-avatar": "^1.1.3",
  34. "@radix-ui/react-checkbox": "^1.1.4",
  35. "@radix-ui/react-collapsible": "^1.1.3",
  36. "@radix-ui/react-dialog": "^1.1.6",
  37. "@radix-ui/react-dropdown-menu": "^2.1.6",
  38. "@radix-ui/react-label": "^2.1.2",
  39. "@radix-ui/react-popover": "^1.1.6",
  40. "@radix-ui/react-scroll-area": "^1.2.3",
  41. "@radix-ui/react-select": "^2.1.6",
  42. "@radix-ui/react-separator": "^1.1.2",
  43. "@radix-ui/react-slot": "^1.1.2",
  44. "@radix-ui/react-switch": "^1.1.3",
  45. "@radix-ui/react-tooltip": "^1.1.8",
  46. "@tailwindcss/vite": "^4.0.7",
  47. "@tanstack/react-query": "^5.66.7",
  48. "@tanstack/react-query-devtools": "^5.68.0",
  49. "@tanstack/react-router": "^1.105.0",
  50. "@tanstack/react-table": "^8.21.2",
  51. "@types/node": "^22.13.4",
  52. "awesome-graphql-client": "^2.1.0",
  53. "class-variance-authority": "^0.7.1",
  54. "clsx": "^2.1.1",
  55. "cmdk": "^1.0.0",
  56. "date-fns": "^4.1.0",
  57. "gql.tada": "^1.8.10",
  58. "graphql": "~16.10.0",
  59. "json-edit-react": "^1.23.1",
  60. "lucide-react": "^0.475.0",
  61. "next-themes": "^0.4.6",
  62. "react": "^19.0.0",
  63. "react-day-picker": "^8.10.1",
  64. "react-dom": "^19.0.0",
  65. "react-dropzone": "^14.3.8",
  66. "react-hook-form": "^7.54.2",
  67. "sonner": "^2.0.1",
  68. "tailwind-merge": "^3.0.1",
  69. "tailwindcss": "^4.0.6",
  70. "tailwindcss-animate": "^1.0.7",
  71. "tw-animate-css": "^1.2.4",
  72. "unplugin-swc": "^1.5.1",
  73. "use-debounce": "^10.0.4",
  74. "zod": "^3.24.2"
  75. },
  76. "devDependencies": {
  77. "@eslint/js": "^9.19.0",
  78. "@lingui/babel-plugin-lingui-macro": "^5.2.0",
  79. "@lingui/cli": "^5.2.0",
  80. "@lingui/vite-plugin": "^5.2.0",
  81. "@tanstack/eslint-plugin-query": "^5.66.1",
  82. "@tanstack/router-devtools": "^1.105.0",
  83. "@tanstack/router-plugin": "^1.105.0",
  84. "@types/react": "^19.0.10",
  85. "@types/react-dom": "^19.0.4",
  86. "@vitejs/plugin-react": "^4.3.4",
  87. "eslint": "^9.19.0",
  88. "eslint-plugin-react": "^7.37.4",
  89. "eslint-plugin-react-hooks": "^5.0.0",
  90. "eslint-plugin-react-refresh": "^0.4.18",
  91. "globals": "^15.14.0",
  92. "vite": "^6.1.0"
  93. }
  94. }