package.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. "@emotion/react": "^11.10.6",
  11. "@emotion/styled": "^11.10.6",
  12. "@loadable/component": "^5.15.0",
  13. "@material-ui/core": "4.11.4",
  14. "@material-ui/icons": "^4.11.3",
  15. "@material-ui/lab": "4.0.0-alpha.58",
  16. "@material-ui/pickers": "^3.3.10",
  17. "@mui/icons-material": "^5.11.9",
  18. "@mui/material": "^5.11.9",
  19. "@mui/x-data-grid": "^4.0.0",
  20. "axios": "^0.21.3",
  21. "d3": "^7.8.2",
  22. "dayjs": "^1.10.5",
  23. "file-saver": "^2.0.5",
  24. "i18next": "^20.3.1",
  25. "papaparse": "^5.3.1",
  26. "react": "^18.2.0",
  27. "react-dom": "^18.2.0",
  28. "react-highlight-words": "^0.17.0",
  29. "react-i18next": "^12.0.0",
  30. "react-router-dom": "^6.4.3",
  31. "react-syntax-highlighter": "^15.4.4",
  32. "socket.io-client": "^4.1.3",
  33. "typescript": "^4.1.2",
  34. "vite": "^3.2.2",
  35. "vite-plugin-svgr": "^0.3.0",
  36. "web-vitals": "^1.0.1"
  37. },
  38. "devDependencies": {
  39. "@testing-library/jest-dom": "^5.16.5",
  40. "@testing-library/react": "12.1.2",
  41. "@testing-library/react-hooks": "^7.0.1",
  42. "@testing-library/user-event": "^12.1.10",
  43. "@types/d3": "^7.4.0",
  44. "@types/file-saver": "^2.0.4",
  45. "@types/loadable__component": "^5.13.4",
  46. "@types/node": "^12.0.0",
  47. "@types/papaparse": "^5.2.6",
  48. "@types/react": "^18.0.25",
  49. "@types/react-dom": "^18.0.8",
  50. "@types/react-highlight-words": "^0.16.2",
  51. "@types/react-router-dom": "^5.3.3",
  52. "@types/react-syntax-highlighter": "^13.5.2",
  53. "@types/webpack-env": "^1.16.3",
  54. "@vitejs/plugin-react": "^2.2.0",
  55. "@vitejs/plugin-react-refresh": "^1.3.6",
  56. "@vitest/coverage-c8": "^0.25.0",
  57. "jsdom": "^20.0.2",
  58. "prettier": "2.3.2",
  59. "vitest": "^0.24.5"
  60. },
  61. "homepage": "./",
  62. "scripts": {
  63. "start": "vite",
  64. "build": "vite build",
  65. "test": "vitest",
  66. "test:coverage": "vitest --coverage",
  67. "test:watch": "vitest --watchAll",
  68. "format": "prettier --write '**/*.{ts,js,tsx,jsx,css}'"
  69. },
  70. "eslintConfig": {
  71. "extends": [
  72. "react-app"
  73. ]
  74. },
  75. "browserslist": {
  76. "production": [
  77. ">0.2%",
  78. "not dead",
  79. "not op_mini all"
  80. ],
  81. "development": [
  82. "last 1 chrome version",
  83. "last 1 firefox version",
  84. "last 1 safari version"
  85. ]
  86. }
  87. }