rxdb-hooks
Version:
React hooks for integrating with RxDB
90 lines (89 loc) • 2.68 kB
JSON
{
"name": "rxdb-hooks",
"version": "6.0.0",
"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",
"test:rxdb14": "scripts/test-rxdb.sh 14",
"test:rxdb15": "scripts/test-rxdb.sh 15",
"test:rxdb16": "scripts/test-rxdb.sh 16",
"test:rxdb-matrix": "yarn test:rxdb14 && yarn test:rxdb15 && yarn test:rxdb16",
"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": "^29",
"@types/node": "^20",
"@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": "^29",
"jest-environment-jsdom": "^29",
"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": "^29",
"ts-loader": "^9.4.2",
"typescript": "^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 <17",
"rxjs": ">=7.5.4"
},
"resolutions": {
"minimist": "1.2.5"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}