{
  "name": "my-react-form-state",
  "version": "2.3.0",
  "description": "This is a React form state management library that works with React/Redux/React-Native/Context API.",
  "author": "guiyep",
  "license": "MIT",
  "repository": "guiyep/my-react-form-state",
  "main": "core.js",
  "core": "build/core/index.js",
  "react": "build/react/index.js",
  "redux": "build/redux/index.js",
  "react-redux": "build/react-redux/index.js",
  "json-schema": "build/json-schema/index.js",
  "json-schema-custom": "build/json-schema/custom/index.js",
  "yup": "build/yup/index.js",
  "engines": {
    "node": ">=9",
    "npm": ">=6"
  },
  "keywords": [
    "forms",
    "state",
    "redux",
    "react",
    "hooks",
    "react hooks",
    "reducer state",
    "json-schema",
    "json",
    "schema",
    "yup",
    "joi"
  ],
  "scripts": {
    "test": "jest",
    "build-react": "NODE_ENV=production BABEL_ENV=production rollup -c rollup.config.react.js",
    "build-core": "NODE_ENV=production BABEL_ENV=production rollup -c rollup.config.core.js",
    "build-redux": "NODE_ENV=production BABEL_ENV=production rollup -c rollup.config.redux.js",
    "build-react-redux": "NODE_ENV=production BABEL_ENV=production rollup -c rollup.config.react-redux.js",
    "build-yup": "NODE_ENV=production BABEL_ENV=production rollup -c rollup.config.yup.js",
    "build-json-schema": "NODE_ENV=production BABEL_ENV=production rollup -c rollup.config.json-schema.js",
    "build": "npm run build-json-schema && npm run build-yup && npm run build-core && npm run build-react && npm run build-redux && npm run build-react-redux && cp package.json ./build && cp README.md ./build",
    "publish": "npm publish build",
    "start": "rollup -c -w",
    "deploy": "gh-pages -d",
    "storybook": "start-storybook -p 9009",
    "build-storybook": "build-storybook -c .storybook",
    "prettier": "prettier --write src/**/**/*.{js,jsx}",
    "eslint": "eslint --fix src/**/**/*.{js,jsx}",
    "docs": "docsify serve docs"
  },
  "devDependencies": {
    "@babel/core": "7.14.6",
    "@babel/plugin-transform-runtime": "7.14.5",
    "@babel/preset-env": "7.14.7",
    "@babel/preset-react": "7.14.5",
    "@dump247/storybook-state": "1.6.1",
    "@material-ui/core": "4.12.1",
    "@rollup/plugin-strip": "2.0.1",
    "@storybook/addon-actions": "6.3.4",
    "@storybook/addon-info": "5.3.21",
    "@storybook/addon-links": "6.3.4",
    "@storybook/addons": "6.3.4",
    "@storybook/react": "6.3.4",
    "addon-redux": "1.1.0",
    "babel-eslint": "10.1.0",
    "babel-loader": "8.2.2",
    "babel-plugin-transform-react-remove-prop-types": "0.4.24",
    "babel-polyfill": "6.26.0",
    "babel-preset-minify": "0.5.1",
    "docsify-cli": "4.4.3",
    "eslint": "7.30.0",
    "eslint-config-airbnb": "18.2.1",
    "eslint-config-prettier": "8.3.0",
    "eslint-config-standard": "16.0.3",
    "eslint-config-standard-react": "11.0.1",
    "eslint-plugin-import": "2.23.4",
    "eslint-plugin-jest": "24.3.6",
    "eslint-plugin-jsx-a11y": "6.4.1",
    "eslint-plugin-node": "11.1.0",
    "eslint-plugin-prettier": "3.4.0",
    "eslint-plugin-promise": "5.1.0",
    "eslint-plugin-react": "7.24.0",
    "eslint-plugin-react-hooks": "4.2.0",
    "eslint-plugin-standard": "5.0.0",
    "extend-shallow": "3.0.2",
    "generate-random-data": "0.0.3",
    "husky": "7.0.1",
    "jest": "27.0.6",
    "jest-css-modules": "2.1.0",
    "lint-staged": "11.0.0",
    "prettier": "2.3.2",
    "prop-types": "15.7.2",
    "react": "17.0.2",
    "react-dom": "17.0.2",
    "react-redux": "7.2.4",
    "react-test-renderer": "17.0.2",
    "react-testing-library": "8.0.1",
    "redux": "4.1.0",
    "redux-devtools-extension": "2.13.9",
    "redux-thunk": "2.3.0",
    "rollup": "2.52.8",
    "rollup-plugin-babel": "4.4.0",
    "rollup-plugin-babel-minify": "10.0.0",
    "rollup-plugin-cleaner": "1.0.0",
    "rollup-plugin-commonjs": "10.1.0",
    "rollup-plugin-gzip": "2.5.0",
    "rollup-plugin-import-alias": "1.0.10",
    "rollup-plugin-json": "4.0.0",
    "rollup-plugin-node-resolve": "5.2.0",
    "rollup-plugin-peer-deps-external": "2.2.4",
    "rollup-plugin-postcss": "4.0.0",
    "rollup-plugin-replace": "2.2.0",
    "rollup-plugin-terser": "7.0.2",
    "storybook-addon-redux-listener": "0.1.7",
    "yup": "0.32.9"
  },
  "files": [
    "core/index.js",
    "react/index.js",
    "redux/index.js",
    "yup/index.js",
    "json-schema/index.js",
    "react-redux/index.js"
  ],
  "peerDependencies": {
    "ajv": "6.12.3",
    "react": "17.0.2",
    "react-dom": "17.0.2",
    "react-redux": "7.2.4"
  },
  "husky": {
    "hooks": {
      "pre-commit": "npm test && lint-staged"
    }
  },
  "lint-staged": {
    "src/**/**/*.{js,jsx}": [
      "prettier --write",
      "eslint --fix",
      "git add"
    ]
  },
  "dependencies": {
    "flat": "^5.0.2"
  }
}
