{
  "name": "react-redux-firebase",
  "version": "3.11.0",
  "description": "Redux integration for Firebase. Comes with a Higher Order Components for use with React.",
  "main": "lib/index.js",
  "module": "es/index.js",
  "jsnext:main": "es/index.js",
  "typings": "./index.d.ts",
  "unpkg": "dist/react-redux-firebase.min.js",
  "scripts": {
    "clean": "rimraf es lib dist coverage",
    "lint": "eslint .",
    "lint:fix": "npm run lint -- --fix",
    "format": "prettier --write \"src/**/*.js\" \"test/**/*.js\"",
    "test": "mocha -R spec ./test/unit/**",
    "test:cov": "nyc --reporter=lcov npm run test",
    "build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib --source-maps",
    "build:es": "cross-env BABEL_ENV=es babel src --out-dir es --source-maps",
    "build:umd": "cross-env BABEL_ENV=commonjs webpack --mode development ./src/index.js -o dist/react-redux-firebase.js",
    "build:umd:min": "cross-env NODE_ENV=production BABEL_ENV=commonjs webpack --mode production ./src/index.js -o dist/react-redux-firebase.min.js",
    "build:size": "cross-env SIZE=true npm run build:umd:min",
    "build": "npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min",
    "watch": "npm run build:commonjs -- --watch",
    "watch:es": "npm run build:es -- --watch",
    "prepare": "husky install && npm run clean && npm run build",
    "docs:clean": "rimraf _book",
    "docs:prepare": "gitbook install",
    "docs:api": "node bin/api-docs-generate",
    "docs:build": "npm run docs:prepare && gitbook build -g prescottprue/react-redux-firebase && npm run docs:api",
    "docs:watch": "npm run docs:prepare && gitbook serve",
    "docs:publish": "npm run docs:clean && npm run docs:build && cp CNAME _book && cd _book && git init && git commit --allow-empty -m 'update book' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'update book' && git push git@github.com:prescottprue/react-redux-firebase gh-pages --force",
    "docs:upload": "node bin/api-docs-upload"
  },
  "license": "MIT",
  "homepage": "http://react-redux-firebase.com",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/prescottprue/react-redux-firebase.git"
  },
  "bugs": {
    "url": "https://github.com/prescottprue/react-redux-firebase/issues"
  },
  "author": {
    "name": "Prescott Prue",
    "url": "https://github.com/prescottprue"
  },
  "keywords": [
    "firebase",
    "redux",
    "react",
    "react-redux",
    "redux-firebase",
    "react",
    "babel",
    "hoc",
    "hooks",
    "redux-react-firebase"
  ],
  "dependencies": {
    "hoist-non-react-statics": "^3.3.2",
    "lodash": "^4.17.21",
    "prop-types": "^15.7.2"
  },
  "peerDependencies": {
    "react": "^16.3.0 || ^17.0.0"
  },
  "devDependencies": {
    "@babel/cli": "^7.16.0",
    "@babel/core": "^7.16.0",
    "@babel/plugin-proposal-class-properties": "^7.16.0",
    "@babel/plugin-transform-async-to-generator": "^7.16.0",
    "@babel/plugin-transform-modules-commonjs": "^7.16.0",
    "@babel/plugin-transform-regenerator": "^7.16.0",
    "@babel/plugin-transform-runtime": "^7.16.4",
    "@babel/preset-env": "^7.16.4",
    "@babel/preset-react": "^7.16.0",
    "@babel/register": "^7.16.0",
    "@babel/runtime": "^7.16.3",
    "@wojtekmaj/enzyme-adapter-react-17": "^0.6.5",
    "babel-eslint": "^10.1.0",
    "babel-loader": "^8.2.2",
    "babel-plugin-add-module-exports": "^1.0.4",
    "babel-plugin-lodash": "^3.3.4",
    "babel-plugin-module-resolver": "^4.1.0",
    "babel-preset-minify": "^0.5.0",
    "chai": "^3.5.0",
    "chai-as-promised": "^7.1.1",
    "chai-enzyme": "^1.0.0-beta.1",
    "child-process-promise": "^2.2.1",
    "cross-env": "^7.0.2",
    "documentation": "^12.1.2",
    "documentation-markdown-api-theme": "^1.0.2",
    "enzyme": "^3.10.0",
    "eslint": "^7.5.0",
    "eslint-config-prettier": "^6.11.0",
    "eslint-config-standard": "^14.1.1",
    "eslint-config-standard-react": "^9.2.0",
    "eslint-plugin-babel": "^5.3.0",
    "eslint-plugin-import": "^2.22.0",
    "eslint-plugin-jsdoc": "^30.0.3",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-prettier": "^3.1.4",
    "eslint-plugin-promise": "^4.2.1",
    "eslint-plugin-react": "^7.20.0",
    "eslint-plugin-react-hooks": "^4.0.8",
    "eslint-plugin-standard": "^4.0.1",
    "firebase": "7.14.6",
    "firebase-server": "^1.1.0",
    "gitbook-cli": "^2.3.2",
    "husky": "^7.0.4",
    "jsdom": "^11.10.0",
    "lint-staged": "^12.1.2",
    "lodash-webpack-plugin": "^0.11.6",
    "mocha": "^3.5.3",
    "nyc": "^15.0.0",
    "prettier": "2.0.5",
    "react": "^17.0.2",
    "react-dom": "^17.0.2",
    "react-redux": "^6.0.0",
    "recompose": "^0.30.0",
    "redux": "4.0.0",
    "redux-firestore": "0.5.7",
    "rimraf": "^3.0.0",
    "sinon": "^9.0.1",
    "sinon-chai": "^3.5.0",
    "uglifyjs-webpack-plugin": "^2.2.0",
    "webpack": "4.42.0",
    "webpack-bundle-analyzer": "^3.8.0",
    "webpack-cli": "^3.3.11",
    "ws": "^3.2.0",
    "xmlhttprequest": "^1.8.0"
  },
  "collective": {
    "type": "opencollective",
    "url": "https://opencollective.com/react-redux-firebase",
    "logo": "https://opencollective.com/opencollective/logo.txt"
  },
  "lint-staged": {
    "*.{json,md}": [
      "prettier --write"
    ],
    "*.{js,ts}": [
      "eslint --fix"
    ]
  }
}
