{
  "version": "1.2.0",
  "name": "@calvear/react-redux",
  "title": "React Redux with Saga middleware.",
  "description": "Preconfigured Redux store initializer with Redux Saga, Redux Logger and Reselect for React SPA applications.",
  "author": "Alvear Candia, Cristopher Alejandro <calvear93@gmail.com>",
  "license": "MIT",
  "private": false,
  "repository": "https://github.com/calvear93/react-redux",
  "main": "index.js",
  "keywords": [
    "react",
    "react-redux",
    "spa",
    "saga",
    "reselect",
    "redux-logger"
  ],
  "engines": {
    "node": ">=12",
    "npm": ">=6"
  },
  "peerDependencies": {
    "react": ">=17.0.2",
    "react-dom": ">=17.0.2"
  },
  "dependencies": {
    "react-redux": "^7.2.5",
    "redux": "^4.1.1",
    "redux-logger": "^3.0.6",
    "redux-saga": "^1.1.3",
    "reselect": "^4.0.0"
  },
  "devDependencies": {
    "@babel/cli": "^7.15.4",
    "@babel/eslint-parser": "^7.15.4",
    "@babel/preset-env": "^7.15.6",
    "@babel/preset-react": "^7.14.5",
    "@testing-library/jest-dom": "^5.14.1",
    "@testing-library/react": "^12.1.0",
    "@testing-library/user-event": "^13.2.1",
    "copyfiles": "^2.4.1",
    "eslint": "^7.32.0",
    "eslint-plugin-import": "^2.24.2",
    "eslint-plugin-jest": "^24.4.0",
    "eslint-plugin-jsdoc": "^36.1.0",
    "eslint-plugin-radar": "^0.2.1",
    "eslint-plugin-react": "^7.25.2",
    "eslint-plugin-react-hooks": "^4.2.0",
    "jest": "^27.2.0"
  },
  "scripts": {
    "build": "npx babel src --out-dir dist --copy-files --source-maps",
    "upload": "npm run build && npm login && cd dist && npm publish --access public",
    "upload:beta": "npm run build && npm login && cd dist && npm publish --access public --tag beta",
    "upload:alpha": "npm run build && npm login && cd dist && npm publish --access public --tag alpha",
    "eslint:analyze": "eslint --ext .js,.jsx src/",
    "eslint:fix": "eslint --fix --ext .js,.jsx src/",
    "test": "test --watchAll=false --verbose",
    "_packages:update": "npm update --save/--save-dev",
    "_packages:force-update": "npx npm-check-updates -u",
    "_git:case-sensitive": "git config core.ignorecase false",
    "prebuild": "rimraf dist/**",
    "postbuild": "copyfiles package.json README.md LICENSE.md CHANGELOG.md dist"
  }
}
