package.json 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "name": "attu-client",
  3. "version": "2.0.0",
  4. "description": "Attu UI Client",
  5. "license": "Apache-2.0",
  6. "bugs": "https://github.com/zilliztech/attu/issues",
  7. "private": false,
  8. "dependencies": {
  9. "@codemirror/commands": "^6.6.0",
  10. "@codemirror/lang-javascript": "^6.2.2",
  11. "@codemirror/lang-json": "^6.0.1",
  12. "@codemirror/language": "^6.10.1",
  13. "@codemirror/lint": "^6.8.0",
  14. "@codemirror/state": "^6.4.1",
  15. "@codemirror/view": "^6.28.6",
  16. "@date-io/dayjs": "1.x",
  17. "@ddietr/codemirror-themes": "^1.4.2",
  18. "@emotion/react": "^11.13.0",
  19. "@emotion/styled": "^11.13.0",
  20. "@json2csv/plainjs": "^7.0.6",
  21. "@mui/icons-material": "^5.17.1",
  22. "@mui/material": "^5.17.1",
  23. "@mui/styles": "^5.17.1",
  24. "@mui/x-tree-view": "^7.28.0",
  25. "axios": "^1.8.2",
  26. "codemirror": "^6.0.1",
  27. "d3": "^7.9.0",
  28. "dayjs": "^1.11.13",
  29. "file-saver": "^2.0.5",
  30. "i18next": "^24.2.3",
  31. "i18next-browser-languagedetector": "^8.0.4",
  32. "papaparse": "^5.4.1",
  33. "react": "^18.2.0",
  34. "react-dom": "^18.2.0",
  35. "react-highlight-words": "^0.17.0",
  36. "react-i18next": "^13.5.0",
  37. "react-router-dom": "^6.23.1",
  38. "react-syntax-highlighter": "^15.6.1",
  39. "remove": "^0.1.5",
  40. "socket.io-client": "^4.8.1",
  41. "web-vitals": "^1.0.1"
  42. },
  43. "devDependencies": {
  44. "@types/d3": "^7.4.3",
  45. "@types/file-saver": "^2.0.5",
  46. "@types/node": "^12.0.0",
  47. "@types/papaparse": "^5.3.15",
  48. "@types/react": "^18.2.15",
  49. "@types/react-dom": "^18.2.7",
  50. "@types/react-highlight-words": "^0.20.0",
  51. "@types/react-router-dom": "^5.3.3",
  52. "@types/react-syntax-highlighter": "^15.5.13",
  53. "@vitejs/plugin-react": "^4.3.4",
  54. "prettier": "^3.5.3",
  55. "typescript": "^5.8.2",
  56. "vite": "^6.2.2",
  57. "vite-plugin-svgr": "^4.2.0"
  58. },
  59. "homepage": "./",
  60. "scripts": {
  61. "start": "vite",
  62. "build": "vite build",
  63. "format": "prettier --write '**/*.{ts,js,tsx,jsx,css}'"
  64. },
  65. "eslintConfig": {
  66. "extends": [
  67. "react-app"
  68. ]
  69. },
  70. "browserslist": {
  71. "production": [
  72. ">0.2%",
  73. "not dead",
  74. "not op_mini all"
  75. ],
  76. "development": [
  77. "last 1 chrome version",
  78. "last 1 firefox version",
  79. "last 1 safari version"
  80. ]
  81. }
  82. }