{
	"name": "rxdb-hooks",
	"version": "5.0.2",
	"description": "React hooks for integrating with RxDB",
	"main": "./dist/index.js",
	"types": "./dist/index.d.ts",
	"repository": "git@github.com:cvara/rxdb-hooks.git",
	"author": "Christoforos Varakliotis <c.varakliotis@gmail.com>",
	"license": "MIT",
	"private": false,
	"keywords": [
		"rxdb",
		"react",
		"hooks",
		"react-rxdb",
		"use-rxdb",
		"react-hooks"
	],
	"scripts": {
		"prettier": "prettier --write \"{src,tests}/**/*.{js,ts,jsx,tsx}\"",
		"lint": "eslint \"src/**/*.{js,ts,jsx,tsx}\" --ignore-path .gitignore",
		"test": "yarn jest --no-cache --forceExit --runInBand",
		"build": "rimraf dist && tsc --project tsconfig.json",
		"prepack": "yarn build",
		"typecheck": "tsc --noEmit",
		"changelog": "node ./bin/changelog.js",
    "start:parcel": "parcel ./examples/parcel/index.html",
    "start:webpack": "webpack serve --config examples/webpack/webpack.config.js"
  },
  "husky": {
    "hooks": {
      "pre-commit": "pretty-quick --staged"
    }
  },
  "devDependencies": {
    "@testing-library/jest-dom": "^5.16.1",
    "@testing-library/react": "^12.1.2",
    "@testing-library/react-hooks": "^7.0.2",
    "@types/jest": "^25.2.3",
    "@types/react": "^17.0.38",
    "@typescript-eslint/eslint-plugin": "^5.9.0",
    "@typescript-eslint/parser": "^5.9.0",
    "@webpack-cli/generators": "^3.0.1",
    "dotenv": "^8.2.0",
    "eslint": "^8.6.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-react": "^7.18.3",
    "eslint-plugin-react-hooks": "^4.0.4",
    "events": "^3.1.0",
    "fake-indexeddb": "^4.0.1",
    "html-webpack-plugin": "^5.5.0",
    "husky": "^4.2.3",
    "jest": "^26.0.1",
    "parcel": "^2.8.3",
    "pouchdb-adapter-memory": "^7.2.1",
    "prettier": "^2.6.2",
    "pretty-quick": "^3.1.3",
    "process": "^0.11.10",
    "react": "^17.0.2",
    "react-dom": "^17.0.2",
    "react-test-renderer": "^17.0.2",
    "rimraf": "^3.0.2",
    "rxdb": "14.1.1",
    "rxjs": "^7.5.7",
    "shelljs": "^0.8.4",
    "ts-jest": "^26.0.0",
    "ts-loader": "^9.4.2",
    "typescript": "^4.9.5",
    "webpack": "^5.75.0",
    "webpack-cli": "^5.0.1",
    "webpack-dev-server": "^4.11.1"
  },
  "peerDependencies": {
    "react": ">=16.8",
    "react-dom": ">=16.8",
    "rxdb": ">=14",
    "rxjs": ">=7.5.4"
  },
  "resolutions": {
    "minimist": "1.2.5"
  }
}
