package.json
1 { 2 "name": "evidently-ui-lib", 3 "version": "1.0.0", 4 "type": "module", 5 "scripts": { 6 "tsc": "tsc", 7 "code-check": "biome check" 8 }, 9 "exports": { 10 "./routes-components/*/data": { 11 "default": "./src/routes-components/*/data.tsx" 12 }, 13 "./routes-components/*": { 14 "default": "./src/routes-components/*/index.tsx" 15 }, 16 "./*": { 17 "default": "./src/*", 18 "types": [ 19 "./.tsc-dts/src/*/index.d.ts", 20 "./.tsc-dts/src/*.d.ts" 21 ] 22 } 23 }, 24 "peerDependencies": { 25 "react": "^18.2.0", 26 "react-dom": "^18.2.0" 27 }, 28 "dependencies": { 29 "@hookform/resolvers": "^3.3.1", 30 "@material-table/core": "^6.4.4", 31 "@mui/icons-material": "^7.0.2", 32 "@mui/material": "^7.0.2", 33 "@mui/x-date-pickers": "^8.2.0", 34 "@mui/x-data-grid": "^7.16.0", 35 "material-ui-popup-state": "^5.0.10", 36 "@mui/x-charts": "^8.2.0", 37 "@nivo/bar": "^0.62.0", 38 "@nivo/line": "^0.62.0", 39 "@nivo/scatterplot": "^0.62.0", 40 "@uidotdev/usehooks": "^2.4.1", 41 "dayjs": "^1.11.10", 42 "openapi-fetch": "^0.9.5", 43 "plotly.js": "^2.26.2", 44 "plotly.js-cartesian-dist-min": "^2.26.2", 45 "react-hook-form": "^7.47.0", 46 "react-markdown": "^9.0.0", 47 "react-plotly.js": "^2.6.0", 48 "react-router-dom": "^6.16.0", 49 "@uiw/react-json-view": "2.0.0-alpha.30", 50 "tiny-invariant": "^1.3.1", 51 "zod": "^3.22.4", 52 "react-transition-group": "^4.4.5" 53 }, 54 "devDependencies": { 55 "@types/plotly.js": "^2.12.27", 56 "@types/plotly.js-cartesian-dist-min": "npm:@types/plotly.js-dist-min@^2.3.2", 57 "@types/react": "^18.2.0", 58 "@types/react-dom": "^18.2.0", 59 "@types/react-plotly.js": "^2.6.1", 60 "typescript": "^5.7.2", 61 "@types/react-transition-group": "^4.4.10" 62 } 63 }