package.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. "axios": "^0.21.1",
  23. "dayjs": "^1.10.5",
  24. "i18next": "^20.3.1",
  25. "papaparse": "^5.3.1",
  26. "react": "^17.0.2",
  27. "react-app-rewired": "^2.1.8",
  28. "react-dom": "^17.0.2",
  29. "react-highlight-words": "^0.17.0",
  30. "react-i18next": "^11.10.0",
  31. "react-router-dom": "^5.2.0",
  32. "react-scripts": "4.0.3",
  33. "typescript": "^4.1.2",
  34. "web-vitals": "^1.0.1"
  35. },
  36. "jest": {
  37. "coverageDirectory": "<rootDir>/coverage/"
  38. },
  39. "scripts": {
  40. "start": "react-app-rewired start -FAST_REFRESH=true",
  41. "build": "react-app-rewired build",
  42. "test": "react-app-rewired test",
  43. "test:watch": "react-app-rewired test --watch",
  44. "test:cov": "react-app-rewired test --watchAll=false --coverage",
  45. "test:report": "react-app-rewired test --watchAll=false --coverage --coverageReporters='text-summary'",
  46. "eject": "react-app-rewired eject"
  47. },
  48. "eslintConfig": {
  49. "extends": [
  50. "react-app",
  51. "react-app/jest"
  52. ]
  53. },
  54. "browserslist": {
  55. "production": [
  56. ">0.2%",
  57. "not dead",
  58. "not op_mini all"
  59. ],
  60. "development": [
  61. "last 1 chrome version",
  62. "last 1 firefox version",
  63. "last 1 safari version"
  64. ]
  65. },
  66. "devDependencies": {
  67. "@testing-library/react-hooks": "^7.0.1"
  68. }
  69. }