{
  "name": "cra-template-quickstart-redux",
  "version": "1.3.4",
  "license": "MIT",
  "engines": {
    "node": ">=16"
  },
  "description": "Opinionated quickstart Create React App template with Redux, React Testing Library and custom eslint and stylelint configurations",
  "main": "template.json",
  "keywords": [
    "react",
    "create-react-app",
    "cra-template",
    "template",
    "react-testing-library",
    "testing-library",
    "eslint",
    "redux"
  ],
  "files": [
    "template",
    "template.json"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/morewings/cra-template-quickstart-redux",
    "directory": "/"
  },
  "bugs": {
    "url": "https://github.com/morewings/cra-template-quickstart-redux/issues"
  },
  "homepage": "https://morewings.github.io/cra-template-quickstart-redux",
  "dependencies": {
    "@babel/runtime": "^7.23.9",
    "@testing-library/jest-dom": "^5.17.0",
    "@testing-library/react": "^12.1.5",
    "@testing-library/react-hooks": "^8.0.1",
    "@testing-library/user-event": "^14.5.2",
    "axios": "^1.6.7",
    "eslint-config-airbnb": "^18.2.1",
    "eslint-config-prettier": "^9.1.0",
    "eslint-config-react-app": "^7.0.1",
    "eslint-plugin-fp": "^2.3.0",
    "eslint-plugin-prettier": "^4.2.1",
    "husky": "^8.0.3",
    "identity-obj-proxy": "^3.0.0",
    "lint-staged": "^15.2.1",
    "npm-run-all": "^4.1.5",
    "prettier": "^2.8.7",
    "prop-types": "^15.8.1",
    "react": "^17.0.2",
    "react-dom": "^17.0.2",
    "react-redux": "^8.1.3",
    "react-scripts": "5.0.1",
    "react-test-renderer": "^17.0.2",
    "redux": "^5.0.1",
    "redux-mock-store": "^1.5.4",
    "stylelint": "^14.16.1",
    "stylelint-config-prettier": "^9.0.5",
    "stylelint-config-standard": "^29.0.0",
    "stylelint-order": "^6.0.4"
  },
  "scripts": {
    "start": "react-scripts start",
    "build": "react-scripts build",
    "test": "react-scripts test",
    "eject": "react-scripts eject",
    "clean:files": "node ./cleanFiles.js",
    "copy:files": "node ./copyFiles.js",
    "prepublishOnly": "run-s clean:files copy:files write:template",
    "fix:js": "eslint --fix ./src/",
    "lint:js": "eslint ./src/",
    "lint:style": "stylelint ./src/**/*.css",
    "fix:style": "run-s 'lint:style --fix'",
    "write:template": "node ./writeTemplateConfig.js",
    "prepare": "is-ci || husky install"
  },
  "browserslist": {
    "production": [
      ">0.2%",
      "not dead",
      "not op_mini all"
    ],
    "development": [
      "last 1 chrome version",
      "last 1 firefox version",
      "last 1 safari version"
    ]
  },
  "devDependencies": {
    "is-ci": "^3.0.1",
    "recursive-copy": "2.0.14",
    "rimraf": "5.0.5"
  },
  "jest": {
    "moduleNameMapper": {
      "axios": "axios/dist/node/axios.cjs"
    }
  }
}
