package.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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": true,
  8. "dependencies": {
  9. "@date-io/dayjs": "1.x",
  10. "@json2csv/plainjs": "^7.0.3",
  11. "@material-ui/core": "4.12.4",
  12. "@material-ui/icons": "^4.11.3",
  13. "@material-ui/lab": "4.0.0-alpha.61",
  14. "@material-ui/pickers": "^3.3.10",
  15. "@mui/x-data-grid": "^4.0.0",
  16. "axios": "^1.6.2",
  17. "d3": "^7.8.5",
  18. "dayjs": "^1.11.9",
  19. "file-saver": "^2.0.5",
  20. "filesaver": "^0.0.13",
  21. "i18next": "^20.3.1",
  22. "papaparse": "^5.4.1",
  23. "react": "^18.2.0",
  24. "react-dom": "^18.2.0",
  25. "react-highlight-words": "^0.17.0",
  26. "react-i18next": "^13.5.0",
  27. "react-router-dom": "^6.14.2",
  28. "react-syntax-highlighter": "^15.5.0",
  29. "socket.io-client": "^4.7.1",
  30. "vite": "5.0.2",
  31. "vite-plugin-svgr": "4.2.0",
  32. "web-vitals": "^1.0.1"
  33. },
  34. "devDependencies": {
  35. "@testing-library/jest-dom": "^5.17.0",
  36. "@testing-library/react": "12.1.2",
  37. "@testing-library/react-hooks": "^7.0.1",
  38. "@testing-library/user-event": "^12.1.10",
  39. "@types/d3": "^7.4.0",
  40. "@types/file-saver": "^2.0.5",
  41. "@types/loadable__component": "^5.13.4",
  42. "@types/node": "^12.0.0",
  43. "@types/papaparse": "^5.3.7",
  44. "@types/react": "^18.2.15",
  45. "@types/react-dom": "^18.2.7",
  46. "@types/react-highlight-words": "^0.16.4",
  47. "@types/react-router-dom": "^5.3.3",
  48. "@types/react-syntax-highlighter": "^13.5.2",
  49. "@types/webpack-env": "^1.18.1",
  50. "@vitejs/plugin-react": "^4.0.3",
  51. "@vitejs/plugin-react-refresh": "^1.3.6",
  52. "@vitest/coverage-c8": "^0.25.0",
  53. "jsdom": "^20.0.2",
  54. "prettier": "2.3.2",
  55. "typescript": "^4.1.2",
  56. "vitest": "^0.24.5"
  57. },
  58. "homepage": "./",
  59. "scripts": {
  60. "start": "vite",
  61. "build": "vite build",
  62. "test": "vitest",
  63. "test:coverage": "vitest --coverage",
  64. "test:watch": "vitest --watchAll",
  65. "format": "prettier --write '**/*.{ts,js,tsx,jsx,css}'"
  66. },
  67. "eslintConfig": {
  68. "extends": [
  69. "react-app"
  70. ]
  71. },
  72. "browserslist": {
  73. "production": [
  74. ">0.2%",
  75. "not dead",
  76. "not op_mini all"
  77. ],
  78. "development": [
  79. "last 1 chrome version",
  80. "last 1 firefox version",
  81. "last 1 safari version"
  82. ]
  83. }
  84. }