package.json 1.9 KB

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