package.json 2.2 KB

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