1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- {
- "name": "milvus-insight-client",
- "version": "0.1.0",
- "description": "Milvus insight UI Client",
- "license": "Apache-2.0",
- "bugs": "https://github.com/milvus-io/milvus-insight/issues",
- "private": true,
- "dependencies": {
- "@material-ui/core": "^4.11.4",
- "@material-ui/icons": "^4.11.2",
- "@material-ui/lab": "^4.0.0-alpha.58",
- "@testing-library/jest-dom": "^5.11.4",
- "@testing-library/react": "^11.1.0",
- "@testing-library/user-event": "^12.1.10",
- "@types/jest": "^26.0.15",
- "@types/node": "^12.0.0",
- "@types/papaparse": "^5.2.6",
- "@types/react": "^17.0.0",
- "@types/react-dom": "^17.0.0",
- "@types/react-highlight-words": "^0.16.2",
- "@types/react-router-dom": "^5.1.7",
- "@types/react-syntax-highlighter": "^13.5.2",
- "axios": "^0.21.1",
- "dayjs": "^1.10.5",
- "i18next": "^20.3.1",
- "papaparse": "^5.3.1",
- "react": "^17.0.2",
- "react-app-rewired": "^2.1.8",
- "react-dom": "^17.0.2",
- "react-highlight-words": "^0.17.0",
- "react-i18next": "^11.10.0",
- "react-router-dom": "^5.2.0",
- "react-scripts": "4.0.3",
- "react-syntax-highlighter": "^15.4.4",
- "socket.io-client": "^4.1.3",
- "typescript": "^4.1.2",
- "web-vitals": "^1.0.1"
- },
- "jest": {
- "coverageDirectory": "<rootDir>/coverage/"
- },
- "scripts": {
- "start": "react-app-rewired start -FAST_REFRESH=true",
- "build": "react-app-rewired build",
- "test": "react-app-rewired test",
- "test:watch": "react-app-rewired test --watch",
- "test:cov": "react-app-rewired test --watchAll=false --coverage",
- "test:report": "react-app-rewired test --watchAll=false --coverage --coverageReporters='text-summary'",
- "eject": "react-app-rewired eject",
- "format": "prettier --write '**/*.{ts,js,tsx,jsx,css}'"
- },
- "eslintConfig": {
- "extends": [
- "react-app",
- "react-app/jest"
- ]
- },
- "browserslist": {
- "production": [
- ">0.2%",
- "not dead",
- "not op_mini all"
- ],
- "development": [
- "last 1 chrome version",
- "last 1 firefox version",
- "last 1 safari version"
- ]
- },
- "devDependencies": {
- "@testing-library/react-hooks": "^7.0.1",
- "prettier": "2.3.2"
- }
- }
|