UNPKG

filter-material-ui

Version:

A material-ui component which allows to edit a user defined set of fields representing a filter and display it as a text or a form

84 lines 2.47 kB
{ "name": "filter-material-ui", "version": "3.1.0", "description": "A material-ui component which allows to edit a user defined set of fields representing a filter and display it as a text or a form", "main": "lib/index.js", "sideEffects": false, "scripts": { "re-install": "rimraf ./node-modules && yarn", "build": "rimraf ./lib && tsc", "deploy": "cross-env NODE_ENV=production yarn build && yarn npm publish", "test": "echo \"Error: no test specified\" && exit 1", "storybook:start": "storybook dev -p 6006 -c storybook", "storybook:build": "storybook build -c storybook -o docs", "storybook:commit": "git add . && git commit -m \"Updated storybook\"", "all": "yarn install && yarn storybook:build && yarn deploy" }, "repository": { "type": "git", "url": "git+https://github.com/iulian-radu-at/filter-material-ui.git" }, "files": [ "lib", "index.d.ts" ], "keywords": [ "text", "filter", "material-ui", "filter-material-ui", "react", "react-component", "ui", "material design" ], "author": "Iulian Radu <iulian.radu@gmx.at>", "license": "MIT", "bugs": { "url": "https://github.com/iulian-radu-at/filter-material-ui/issues" }, "homepage": "https://github.com/iulian-radu-at/filter-material-ui#readme", "dependencies": { "@mui/material": "^5.14.20", "input-material-ui": "^3.1.1", "lodash": "^4.17.21", "react-select-material-ui": "^9.3.1" }, "devDependencies": { "@babel/core": "^7.23.5", "@storybook/react": "^7.6.4", "@storybook/react-webpack5": "7.6.4", "@types/babel-core": "^6.25.10", "@types/lodash": "^4.14.202", "@types/react": "^18.2.43", "@types/react-dom": "^18.2.17", "@types/react-select": "^5.0.1", "babel-loader": "^9.1.3", "babel-preset-react-app": "^10.0.1", "cross-env": "^7.0.3", "react": "^18.2.0", "react-dom": "^18.2.0", "rimraf": "^5.0.5", "storybook": "^7.6.4", "typescript": "^5.3.3", "webpack": "^5.89.0" }, "peerDependencies": { "react": ">=18.0.0", "react-dom": ">=18.0.0" }, "jest": { "modulePathIgnorePatterns": [ "./node_modules", "./history" ], "transform": { "^.+\\.js$": "babel-jest" }, "testRegex": "src/*(/(__tests?__/)([^_].*/)*?[^_][^/]*?\\.(test|spec)?\\.(js?))$", "setupFiles": [ "./enzymeAdapter.setup.js" ] }, "packageManager": "yarn@4.0.2" }