package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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-router-dom": "^5.1.7",
  20. "axios": "^0.21.1",
  21. "dayjs": "^1.10.5",
  22. "i18next": "^20.3.1",
  23. "react": "^17.0.2",
  24. "react-app-rewired": "^2.1.8",
  25. "react-dom": "^17.0.2",
  26. "react-i18next": "^11.10.0",
  27. "react-router-dom": "^5.2.0",
  28. "react-scripts": "4.0.3",
  29. "typescript": "^4.1.2",
  30. "web-vitals": "^1.0.1"
  31. },
  32. "scripts": {
  33. "start": "react-app-rewired start -FAST_REFRESH=true",
  34. "build": "react-app-rewired build",
  35. "test": "react-app-rewired test",
  36. "eject": "react-app-rewired eject"
  37. },
  38. "eslintConfig": {
  39. "extends": [
  40. "react-app",
  41. "react-app/jest"
  42. ]
  43. },
  44. "browserslist": {
  45. "production": [
  46. ">0.2%",
  47. "not dead",
  48. "not op_mini all"
  49. ],
  50. "development": [
  51. "last 1 chrome version",
  52. "last 1 firefox version",
  53. "last 1 safari version"
  54. ]
  55. }
  56. }