{
  "name": "@mrcgonlop/watermelondb",
  "description": "Build powerful React Native and React web apps that scale from hundreds to tens of thousands of records and remain fast",
  "version": "0.27.1",
  "scripts": {
    "up": "yarn",
    "build": "NODE_ENV=production node ./scripts/make.mjs",
    "dev": "NODE_ENV=development node ./scripts/make.mjs",
    "dev:native": "react-native start",
    "release": "node ./scripts/release.mjs",
    "prettier": "prettier --write src docs-website/src",
    "flow": "flow check --color always",
    "eslint": "eslint ./src -c ./.eslintrc.js --cache --cache-location ./.cache/.eslintcache",
    "tslint": "tslint --project .",
    "test": "jest --config=./jest.config.js --forceExit",
    "ci": "yarn ci:check",
    "ci:check": "concurrently -n jest,eslint,flow,ts 'npm run test' 'npm run eslint' 'npm run flow' 'npm run test:typescript' --kill-others-on-fail",
    "test:android": "cd native/androidTest && ./gradlew connectedAndroidTest",
    "test:ios": "scripts/test-ios",
    "test:windows": "react-native run-windows",
    "test:windows:ci": "cd native/windowsE2E && npm run e2etest",
    "test:native": "concurrently -n android,ios 'npm run test:android' 'npm run test:ios' --kill-others-on-fail",
    "test:typescript": "cd examples/typescript; yarn; npm run test",
    "swiftlint": "cd native; swiftlint",
    "ktlint": "cd native/androidTest; ./gradlew ktlint",
    "ktlint:format": "cd native/androidTest; ./gradlew ktlintFormat",
    "android:emulator": "./scripts/emulatorWithJavaCheck",
    "cocoapods": "rm -fr native/iosTest/build/generated && cd native/iosTest && bundle exec pod install",
    "docs:version": "cd docs-website && yarn version --no-git-tag-version --no-commit-hooks --new-version",
    "docs:dev": "./scripts/update-docusaurus && cd docs-website && yarn start",
    "docs:build": "./scripts/update-docusaurus && cd docs-website && yarn build",
    "docs:deploy": "./scripts/update-docusaurus && cd docs-website && yarn deploy",
    "postinstall": "patch-package"
  },
  "types": "src/index.d.ts",
  "author": "@Nozbe",
  "homepage": "https://github.com/Nozbe/WatermelonDB#readme",
  "bugs": "https://github.com/Nozbe/WatermelonDB/issues",
  "license": "MIT",
  "keywords": [
    "database",
    "sqlite",
    "react",
    "react-native",
    "indexeddb",
    "lokijs",
    "watermelon",
    "watermelondb",
    "offline",
    "offline-first",
    "persistence",
    "reactive",
    "rxjs",
    "better-sqlite3",
    "db"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/Nozbe/WatermelonDB.git"
  },
  "dependencies": {
    "@babel/runtime": "7.21.0",
    "@nozbe/simdjson": "3.1.0-wmelon1",
    "@nozbe/sqlite": "3.40.1",
    "hoist-non-react-statics": "^3.3.2",
    "lokijs": "npm:@nozbe/lokijs@1.5.12-wmelon6",
    "rxjs": "^7.8.0",
    "sql-escape-string": "^1.1.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@babel/cli": "^7.21.0",
    "@babel/core": "^7.21.0",
    "@babel/eslint-parser": "^7.19.1",
    "@babel/plugin-proposal-class-properties": "^7.18.6",
    "@babel/plugin-proposal-decorators": "7.21.0",
    "@babel/plugin-proposal-json-strings": "^7.18.6",
    "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
    "@babel/plugin-proposal-object-rest-spread": "^7.20.7",
    "@babel/plugin-proposal-optional-chaining": "^7.21.0",
    "@babel/plugin-proposal-unicode-property-regex": "^7.18.6",
    "@babel/plugin-syntax-dynamic-import": "^7.2.0",
    "@babel/plugin-syntax-flow": "^7.14.5",
    "@babel/plugin-syntax-jsx": "^7.18.6",
    "@babel/plugin-transform-arrow-functions": "^7.20.7",
    "@babel/plugin-transform-async-to-generator": "^7.20.7",
    "@babel/plugin-transform-block-scoping": "^7.21.0",
    "@babel/plugin-transform-classes": "^7.21.0",
    "@babel/plugin-transform-computed-properties": "^7.20.7",
    "@babel/plugin-transform-destructuring": "^7.20.7",
    "@babel/plugin-transform-exponentiation-operator": "^7.18.6",
    "@babel/plugin-transform-flow-strip-types": "^7.21.0",
    "@babel/plugin-transform-for-of": "^7.21.0",
    "@babel/plugin-transform-function-name": "^7.18.9",
    "@babel/plugin-transform-literals": "^7.18.9",
    "@babel/plugin-transform-modules-commonjs": "^7.20.11",
    "@babel/plugin-transform-parameters": "^7.20.7",
    "@babel/plugin-transform-react-constant-elements": "^7.20.2",
    "@babel/plugin-transform-react-display-name": "^7.18.6",
    "@babel/plugin-transform-react-inline-elements": "^7.21.0",
    "@babel/plugin-transform-react-jsx": "^7.21.0",
    "@babel/plugin-transform-react-jsx-source": "^7.19.6",
    "@babel/plugin-transform-regenerator": "^7.20.5",
    "@babel/plugin-transform-runtime": "^7.21.0",
    "@babel/plugin-transform-shorthand-properties": "^7.18.6",
    "@babel/plugin-transform-spread": "^7.20.7",
    "@babel/plugin-transform-sticky-regex": "^7.18.6",
    "@babel/plugin-transform-template-literals": "^7.18.9",
    "@babel/plugin-transform-unicode-regex": "^7.18.6",
    "@nozbe/watermelondb_expect": "npm:expect@24.1.0",
    "@testing-library/react-hooks": "^8.0.1",
    "@types/hoist-non-react-statics": "^3.3.1",
    "@types/react": "^16.8.6",
    "@typescript-eslint/eslint-plugin": "^5.53.0",
    "@typescript-eslint/parser": "^5.53.0",
    "anymatch": "^3.1.3",
    "babel-core": "^7.0.0-0",
    "babel-plugin-closure-elimination": "^1.3.2",
    "babel-plugin-import-redirect": "^1.1.1",
    "babel-plugin-minify-dead-code-elimination": "^0.5.2",
    "babel-plugin-minify-flip-comparisons": "^0.4.3",
    "babel-plugin-minify-guarded-expressions": "^0.4.4",
    "babel-plugin-minify-replace": "^0.5.0",
    "babel-plugin-module-resolver": "^5.0.0",
    "better-sqlite3": "^9.5.0",
    "big-list-of-naughty-strings": "https://github.com/radex/big-list-of-naughty-strings#8346238a82f1e3a6f62389def1e668d80e4023fb",
    "cavy": "git+https://github.com/Nozbe/cavy.git",
    "chokidar": "^3.5.3",
    "chokidar-cli": "^3.0.0",
    "concurrently": "^7.6.0",
    "eslint": "^8.34.0",
    "eslint-config-airbnb": "^19.0.4",
    "eslint-config-prettier": "^8.6.0",
    "eslint-plugin-flowtype": "^8.0.3",
    "eslint-plugin-import": "^2.22.1",
    "eslint-plugin-jest": "^27.2.1",
    "eslint-plugin-jsx-a11y": "^6.7.1",
    "eslint-plugin-react": "^7.32.2",
    "eslint-plugin-react-hooks": "^4.6.0",
    "execa": "^7.0.0",
    "fast-async": "^7.0",
    "flow-bin": "0.200.0",
    "fs-extra": "^11.1.0",
    "glob-to-regexp": "^0.4.1",
    "inquirer": "^9.1.4",
    "jest": "^29.4.3",
    "json-stringify-pretty-compact": "^4.0.0",
    "klaw-sync": "^6.0.0",
    "listr": "^0.14.1",
    "listr-input": "^0.2.1",
    "lodash.clonedeep": "^4.5.0",
    "mkdirp": "^2.1.3",
    "patch-package": "^8.0.0",
    "path": "^0.12.7",
    "postinstall-postinstall": "^2.1.0",
    "prettier": "^2.8.4",
    "rambdax": "2.15.0",
    "react": "18.2.0",
    "react-dom": "18.2.0",
    "react-native": "0.71.3",
    "react-native-windows": "0.71.28",
    "react-test-renderer": "18.2.0",
    "rimraf": "^4.1.2",
    "semver": "^7.3.8",
    "tslint": "^5.11.0",
    "tslint-config-prettier": "^1.15.0",
    "typescript": "^4.5.0"
  }
}
