{
  "name": "@beepsoft/hamster",
  "version": "0.1.1",
  "description": "MST-GQL based admin fronted components for Hasura backends",
  "main": "lib/commonjs/index",
  "module": "lib/module/index",
  "types": "lib/typescript/index.d.ts",
  "react-native": "src/index",
  "source": "src/index",
  "files": [
    "lib",
    "package.json"
  ],
  "scripts": {
    "test": "jest",
    "typescript": "tsc --noEmit",
    "lint": "eslint \"**/*.{js,ts,tsx}\"",
    "next-line": "should be 'prepare'",
    "prepareX": "bob build",
    "prepublishX": "bob build",
    "build": "bob build",
    "release": "release-it --npm.skipChecks",
    "example": "yarn --cwd example",
    "pods": "cd example && pod-install --quiet",
    "bootstrap": "yarn example && yarn && yarn pods",
    "watch-full": "watch 'time (bob build  && cd ../hamster-todo/apps/admin && node_modules/.bin/relative-deps)' src",
    "watch": "watch 'time (bob build; mkdir -p ../hamster-todo/apps/admin/node_modules/hamster; cp -r ./lib package.json ../hamster-todo/apps/admin/node_modules/hamster)' src"
  },
  "keywords": [
    "react-native",
    "ios",
    "android"
  ],
  "repository": "https://github.com/beepsoft/hamster",
  "author": "Balazs E. Pataki <pataki@gmail.com> (https://github.com/beepsoft)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/beepsoft/hamster/issues"
  },
  "homepage": "https://github.com/beepsoft/hamster#readme",
  "publishConfig": {
    "registry": "https://registry.npmjs.org/",
    "access": "public"
  },
  "dependencies": {
    "@expo/vector-icons": "^12.0.0",
    "@native-base/formik-ui": "^0.1.3",
    "@nhost/nhost-js": "^0.3.12",
    "@react-navigation/drawer": "^6.1.8",
    "@react-navigation/native": "^6.0.6",
    "@react-navigation/native-stack": "^6.2.5",
    "@types/lodash": "^4.14.178",
    "add": "^2.0.6",
    "cron-parser": "^4.2.1",
    "date-fns": "^2.28.0",
    "expo": "^43.0.0",
    "expo-secure-store": "~11.0.3",
    "expo-status-bar": "~1.1.0",
    "formik": "^2.2.9",
    "graphql": "^14.7.0",
    "graphql-tag": "^2.12.6",
    "json-to-graphql-query": "^2.2.0",
    "jsonwebtoken": "^8.5.1",
    "lodash": "^4.17.21",
    "mobx": "^6.5.0",
    "mobx-devtools-mst": "^0.9.30",
    "mobx-react": "^7.4.0",
    "mobx-state-tree": "^5.1.4",
    "mst-flow-pipe": "^3.0.0",
    "mst-gql": "^0.14.1",
    "native-base": "3.2.1",
    "react": "^17.0.1",
    "react-datepicker": "^4.6.0",
    "react-dom": "^17.0.1",
    "react-native-gesture-handler": "~1.10.2",
    "react-native-keyboard-aware-scroll-view": "^0.9.5",
    "react-native-paper": "^4.11.1",
    "react-native-reanimated": "~2.2.0",
    "react-native-safe-area-context": "3.3.2",
    "react-native-screens": "~3.8.0",
    "react-native-svg": "12.1.1",
    "react-native-vector-icons": "^9.0.0",
    "react-native-web": "0.17.1",
    "remotedev": "^0.2.9",
    "styled-components": "^5.3.0",
    "styled-system": "^5.1.5",
    "yup": "^0.32.11"
  },
  "devDependencies": {
    "@commitlint/config-conventional": "^11.0.0",
    "@react-native-community/eslint-config": "^2.0.0",
    "@release-it/conventional-changelog": "^5.1.1",
    "@types/jest": "^26.0.0",
    "@types/react": "^17.0.45",
    "@types/react-datepicker": "^4.4.1",
    "@types/react-native": "0.62.13",
    "commitlint": "^11.0.0",
    "eslint": "^7.2.0",
    "eslint-config-prettier": "^7.0.0",
    "eslint-plugin-prettier": "^3.1.3",
    "husky": "^6.0.0",
    "jest": "^26.0.1",
    "pod-install": "^0.1.0",
    "prettier": "^2.0.5",
    "react-native": "0.63.4",
    "react-native-builder-bob": "^0.18.0",
    "release-it": "^15.5.0",
    "typescript": "^4.6.4"
  },
  "peerDependencies": {
    "react": "*",
    "react-native": "*"
  },
  "resolutions": {
    "react-error-overlay": "6.0.9",
    "@types/react": "^17.0.1"
  },
  "jest": {
    "preset": "react-native",
    "modulePathIgnorePatterns": [
      "<rootDir>/example/node_modules",
      "<rootDir>/lib/"
    ]
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "release-it": {
    "git": {
      "commitMessage": "chore: release ${version}",
      "tagName": "v${version}"
    },
    "npm": {
      "publish": true
    },
    "github": {
      "release": true
    },
    "plugins": {
      "@release-it/conventional-changelog": {
        "preset": "angular"
      }
    }
  },
  "eslintConfig": {
    "root": true,
    "extends": [
      "@react-native-community",
      "prettier"
    ],
    "rules": {
      "dot-notation": "off",
      "semi": "off",
      "prettier/prettier": [
        "error",
        {
          "quoteProps": "consistent",
          "singleQuote": true,
          "tabWidth": 2,
          "printWidth": 120,
          "trailingComma": "es5",
          "useTabs": false,
          "semi": false
        }
      ]
    }
  },
  "eslintIgnore": [
    "node_modules/",
    "lib/"
  ],
  "prettier": {
    "quoteProps": "consistent",
    "singleQuote": true,
    "tabWidth": 2,
    "printWidth": 120,
    "trailingComma": "es5",
    "useTabs": false
  },
  "To make build faster when typescript definitions don't change, replace typescript with typescriptx": true,
  "   For example when doing lot of small fixes, styling, etc, it is 10-15 seconds faster, around 1-2 secs": true,
  "react-native-builder-bob": {
    "source": "src",
    "output": "lib",
    "targets": [
      "module",
      [
        "commonjs",
        {
          "copyFlow": true
        }
      ],
      [
        "typescript",
        {
          "project": "tsconfig.build.json"
        }
      ]
    ]
  }
}
