package.json 2.2 KB

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