@react-firebase/firestore
Version:
Efficiently Render & mutate Firestore data in your react(or react-native) app.
88 lines (87 loc) • 2.19 kB
JSON
{
"name": "@react-firebase/firestore",
"description": "Efficiently Render & mutate Firestore data in your react(or react-native) app.",
"version": "0.5.5",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"jsnext:main": "dist/index.esm.js",
"umd": "dist/index.umd.js",
"types": "dist/index.d.ts",
"license": "GPL-3.0-only",
"scripts": {
"dev": "parcel src/demo/index.html -d tmp-demo-dir",
"build": "rollup -c",
"prepublish": "yarn build && yarn test",
"test": "yarn tsc && yarn jest --browser --coverage",
"pub": "yarn build && yarn publish"
},
"devDependencies": {
"@google-cloud/firestore": "^0.16.1",
"@types/jest": "^23.3.1",
"@types/lodash.get": "^4.4.4",
"@types/lodash.memoize": "^4.1.4",
"@types/lodash.set": "^4.3.4",
"@types/react": "^16.4.10",
"@types/react-dom": "^16.0.7",
"firebase": "^5.3.1",
"jest": "^23.5.0",
"lodash.memoize": "^4.1.2",
"parcel-bundler": "^1.9.7",
"prettier": "^1.14.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-json-view": "^1.19.1",
"react-powerplug": "^1.0.0-rc.1",
"react-testing-library": "^5.0.0",
"rollup": "^0.64.1",
"rollup-plugin-typescript2": "^0.16.1",
"ts-jest": "^23.1.4",
"typescript": "^3.0.1"
},
"dependencies": {
"immer": "^1.5.0",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"react": "15.x || 16.x",
"render-and-add-props": "^0.5.0"
},
"peerDependencies": {
"firebase": ">=4",
"react": ">= 16.3"
},
"repository": {
"url": "https://github.com/rakannimer/react-firebase"
},
"files": [
"dist/"
],
"author": {
"name": "rakannimer",
"email": "rakannimer@gmail.com"
},
"jest": {
"collectCoverageFrom": [
"src/*",
"src/components/*"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"node"
]
},
"keywords": [
"react",
"firebase",
"react-firebase",
"react-firestore",
"firebase-firestore",
"firestore"
]
}