2
0

package.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {
  2. "name": "milvus-insight-client",
  3. "version": "0.1.0",
  4. "description": "Milvus insight UI Client",
  5. "license": "Apache-2.0",
  6. "bugs": "https://github.com/milvus-io/milvus-insight/issues",
  7. "private": true,
  8. "dependencies": {
  9. "@loadable/component": "^5.15.0",
  10. "@material-ui/core": "4.11.4",
  11. "@material-ui/icons": "^4.11.2",
  12. "@material-ui/lab": "4.0.0-alpha.58",
  13. "@mui/x-data-grid": "^4.0.0",
  14. "@testing-library/jest-dom": "^5.11.4",
  15. "@testing-library/react": "^11.1.0",
  16. "@testing-library/user-event": "^12.1.10",
  17. "@types/jest": "^26.0.15",
  18. "@types/node": "^12.0.0",
  19. "@types/papaparse": "^5.2.6",
  20. "@types/react": "^17.0.0",
  21. "@types/react-dom": "^17.0.0",
  22. "@types/react-highlight-words": "^0.16.2",
  23. "@types/react-router-dom": "^5.1.7",
  24. "@types/react-syntax-highlighter": "^13.5.2",
  25. "axios": "^0.21.3",
  26. "dayjs": "^1.10.5",
  27. "i18next": "^20.3.1",
  28. "papaparse": "^5.3.1",
  29. "react": "^17.0.2",
  30. "react-app-rewire-alias": "^1.1.4",
  31. "react-app-rewired": "^2.1.8",
  32. "react-dom": "^17.0.2",
  33. "react-highlight-words": "^0.17.0",
  34. "react-i18next": "11.10.0",
  35. "react-router-dom": "^5.2.0",
  36. "react-scripts": "4.0.3",
  37. "react-syntax-highlighter": "^15.4.4",
  38. "set-value": "^4.1.0",
  39. "socket.io-client": "^4.1.3",
  40. "typescript": "^4.1.2",
  41. "web-vitals": "^1.0.1"
  42. },
  43. "jest": {
  44. "coverageDirectory": "<rootDir>/coverage/"
  45. },
  46. "scripts": {
  47. "start": "react-app-rewired start -FAST_REFRESH=true",
  48. "start:plugin": "REACT_APP_PLUGIN_DEV=true react-app-rewired start -FAST_REFRESH=true",
  49. "build": "react-app-rewired build",
  50. "test": "react-app-rewired test",
  51. "test:watch": "react-app-rewired test --watch",
  52. "test:cov": "react-app-rewired test --watchAll=false --coverage",
  53. "test:report": "react-app-rewired test --watchAll=false --coverage --coverageReporters='text-summary'",
  54. "eject": "react-app-rewired eject",
  55. "format": "prettier --write '**/*.{ts,js,tsx,jsx,css}'"
  56. },
  57. "eslintConfig": {
  58. "extends": [
  59. "react-app",
  60. "react-app/jest"
  61. ]
  62. },
  63. "browserslist": {
  64. "production": [
  65. ">0.2%",
  66. "not dead",
  67. "not op_mini all"
  68. ],
  69. "development": [
  70. "last 1 chrome version",
  71. "last 1 firefox version",
  72. "last 1 safari version"
  73. ]
  74. },
  75. "devDependencies": {
  76. "@testing-library/react-hooks": "^7.0.1",
  77. "@types/loadable__component": "^5.13.4",
  78. "@types/webpack-env": "^1.16.3",
  79. "prettier": "2.3.2"
  80. }
  81. }