{
  "name": "react-native-rainbow-module",
  "version": "1.13.5",
  "workspaces": [
    "example"
  ],
  "description": "react native test module",
  "main": "lib/commonjs/index",
  "module": "lib/module/index",
  "types": "lib/typescript/src/index.d.ts",
  "react-native": "src/index",
  "source": "src/index",
  "files": [
    "src",
    "lib",
    "android",
    "rainbow-core",
    "ios",
    "cpp",
    "react-native-rainbow-module.podspec",
    "!lib/typescript/example",
    "!**/__tests__",
    "!**/__fixtures__",
    "!**/__mocks__",
    "!android/build",
    "!android/app/build",
    "!android/.gradle",
    "!android/.cxx",
    "!ios/Pods",
    "!ios/build",
    "!ios/DerivedData"
  ],
  "scripts": {
    "typescript": "tsc --noEmit",
    "lint": "eslint \"**/*.{js,ts,tsx}\"",
    "prepare": "bob build",
    "release": "release-it",
    "example": "yarn --cwd example",
    "pods": "cd example && pod-install --quiet",
    "bootstrap": "yarn install && cd example && yarn install",
    "clean": "rm -rf node_modules example/node_modules .yarn/cache",
    "reset": "yarn clean && yarn bootstrap"
  },
  "keywords": [
    "react-native",
    "ios",
    "android"
  ],
  "repository": "https://github.com/Rainbow-CPaaS/Rainbow-React-Native-Samples",
  "author": "Alcatel-Lucent Enterprise",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/Rainbow-CPaaS/Rainbow-React-Native-Samples/issues"
  },
  "homepage": "https://github.com/Rainbow-CPaaS/Rainbow-React-Native-Samples/blob/main/README.md",
  "devDependencies": {
    "@babel/core": "^7.25.2",
    "@babel/preset-env": "^7.25.3",
    "@commitlint/config-conventional": "19.5.0",
    "@react-native/babel-preset": "0.81.5",
    "@react-native/eslint-config": "0.81.5",
    "@react-native/metro-config": "0.81.5",
    "@react-native/typescript-config": "0.81.5",
    "@types/jest": "^29.5.13",
    "@types/react": "^19.1.0",
    "@types/react-native-vector-icons": "^6.4.18",
    "@types/react-test-renderer": "^19.1.0",
    "commitlint": "19.5.0",
    "eslint": "^8.19.0",
    "eslint-config-prettier": "^6.11.0",
    "eslint-plugin-prettier": "^3.1.3",
    "husky": "^4.2.5",
    "jest": "^29.6.3",
    "markdown": "^0.5.0",
    "node-mailjet": "^6.0.8",
    "patch-package": "^6.4.7",
    "pod-install": "^0.1.0",
    "prettier": "2.8.8",
    "react": "19.1.0",
    "react-native": "0.81.5",
    "react-native-builder-bob": "^0.40.12",
    "react-test-renderer": "19.1.0",
    "tslint": "^6.1.3",
    "tslint-config-prettier": "^1.18.0",
    "tslint-react": "^5.0.0",
    "typescript": "^5.8.3",
    "yamljs": "^0.3.0"
  },
  "dependencies": {
    "@react-native-community/masked-view": "^0.1.11",
    "@react-native-picker/picker": "^2.4.10",
    "@react-native/new-app-screen": "0.80.0",
    "@react-navigation/native": "^7.1.17",
    "@react-navigation/native-stack": "^7.3.25",
    "@redux-devtools/extension": "^3.3.0",
    "@reduxjs/toolkit": "^2.2.2",
    "deprecated-react-native-prop-types": "^4.0.0",
    "js-yaml": "^4.1.0",
    "moment": "^2.30.1",
    "react-native-gesture-handler": "^2.28.0",
    "react-native-gifted-chat": "^2.8.0",
    "react-native-image-picker": "7.1.2",
    "react-native-lightbox": "^0.8.1",
    "react-native-material-menu": "^2.0.0",
    "react-native-paper": "^5.12.5",
    "react-native-safe-area-context": "^5.6.1",
    "react-native-screens": "^4.19.0",
    "react-native-super-grid": "^6.0.2",
    "react-native-svg": "^15.12.1",
    "react-native-tab-view": "^4.1.3",
    "react-redux": "^9.2.0",
    "recyclerlistview": "^4.2.3",
    "redux": "^5.0.1",
    "redux-thunk": "^3.1.0",
    "reselect": "^5.1.1",
    "sitemap": "^8.0.0",
    "styled-components": "^6.1.19",
    "uuid": "^11.1.0"
  },
  "peerDependencies": {
    "react-native-image-picker": ">=7.1.2",
    "react-native-keyboard-controller": ">=1.18.0",
    "react-native-localization": ">=2.3.2",
    "react-native-pager-view": ">=6.9.1",
    "react-native-permissions": ">=5.4.2",
    "react-native-reanimated": ">=4.0.0",
    "react-native-vector-icons": ">=10.3.0"
  },
  "engines": {
    "node": ">=20"
  },
  "packageManager": "yarn@4.5.1",
  "husky": {
    "hooks": {
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
      "pre-commit": "yarn lint "
    }
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "release-it": {
    "git": {
      "commitMessage": "chore: release ${version}",
      "tagName": "v${version}"
    },
    "npm": {
      "publish": true
    },
    "github": {
      "release": true
    }
  },
  "eslintConfig": {
    "extends": [
      "@react-native-community",
      "prettier"
    ],
    "rules": {
      "prettier/prettier": [
        "error",
        {
          "quoteProps": "consistent",
          "singleQuote": true,
          "tabWidth": 2,
          "trailingComma": "es5",
          "useTabs": false
        }
      ]
    }
  },
  "eslintIgnore": [
    "node_modules/",
    "lib/"
  ],
  "prettier": {
    "quoteProps": "consistent",
    "singleQuote": true,
    "tabWidth": 2,
    "trailingComma": "es5",
    "useTabs": false
  },
  "react-native-builder-bob": {
    "source": "src",
    "output": "lib",
    "targets": [
      "commonjs",
      "module"
    ]
  }
}
