package.json 2.5 KB

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