package.json 2.3 KB

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