UNPKG

material-table-formik

Version:

A material-table-core wrapper to display a dialog for add, edit and delete. It also allows Formik/YUP validation.

70 lines (69 loc) 2.11 kB
{ "version": "1.0.0", "license": "MIT", "main": "dist/index.js", "typings": "dist/index.d.ts", "homepage": "https://github.com/Domino987/material-table-formik", "files": [ "dist" ], "scripts": { "start": "tsdx watch", "build": "tsdx build", "test": "tsdx test --passWithNoTests", "lint": "tsdx lint", "prepare": "tsdx build", "release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major -m 'Release v%s' && npm run git:push:tags", "release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor -m 'Release v%s' && npm run git:push:tags", "release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch -m 'Release v%s' && npm run git:push:tags", "git:push:tags": "git push origin && git push origin --tags" }, "peerDependencies": { "react": ">=16.13.1" }, "husky": { "hooks": { "pre-commit": "tsdx lint" } }, "prettier": { "printWidth": 80, "semi": true, "singleQuote": true, "trailingComma": "es5" }, "name": "material-table-formik", "author": "Dominik Engel", "keywords": [ "material-table-core", "@mui", "react", "formik", "YUP" ], "description": "A material-table-core wrapper to display a dialog for add, edit and delete. It also allows Formik/YUP validation.", "module": "dist/material-table-formik.esm.js", "repository": { "type": "git", "url": "git://github.com/Domino987/material-table-formik.git" }, "devDependencies": { "@types/jest": "^26.0.13", "@types/react": "^16.9.49", "@types/react-dom": "^16.9.8", "generate-changelog": "^1.8.0", "@types/yup": "^0.29.6", "husky": "^4.3.0", "react": "^17.0.2", "react-dom": "^17.0.2", "tsdx": "^0.14.1", "tslib": "^2.0.1", "typescript": "^4.0.2" }, "dependencies": { "@date-io/core": "^2.9.0", "@material-table/core": "^0.2.29", "@mui/material": "^5.0.0", "formik": "^2.1.5" } }