{
  "name": "expo-ts",
  "version": "2025.11.24",
  "description": "An opinionated template that will allow you to start a new React Native project quickly with Expo, TypeScript, Prettier, ESLint, and some custom configurations that will make development process better",
  "main": "index.ts",
  "scripts": {
    "start": "expo start --clear",
    "android": "expo start --android",
    "ios": "expo start --ios",
    "web": "expo start --web",
    "check-typescript": "tsc --noEmit",
    "check-eslint": "eslint './src/**/*{js,ts,jsx,tsx}'",
    "lint": "npm run check-typescript && npm run check-eslint",
    "prettier": "prettier --plugin '@trivago/prettier-plugin-sort-imports' --log-level error --no-error-on-unmatched-pattern --write src/**/*.{js,ts,jsx,tsx}",
    "release": "standard-version",
    "prepare": "husky",
    "test": "jest"
  },
  "lint-staged": {
    "**/*.{js,jsx,ts,tsx}": [
      "eslint './src/**/*{js,ts,jsx,tsx}' --fix",
      "prettier --write './src/**/*{js,ts,jsx,tsx}'"
    ]
  },
  "keywords": [
    "react-native",
    "expo",
    "typescript",
    "template"
  ],
  "author": "Vladimir Vovk",
  "license": "MIT",
  "homepage": "https://github.com/vladimir-vovk/expo-ts",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vladimir-vovk/expo-ts.git"
  },
  "bugs": {
    "url": "https://github.com/vladimir-vovk/expo-ts/issues"
  },
  "dependencies": {
    "expo": "~54.0.25",
    "expo-status-bar": "~3.0.8",
    "react": "19.1.0",
    "react-native": "0.81.5",
    "react-native-safe-area-context": "~5.6.0"
  },
  "devDependencies": {
    "@commitlint/cli": "^20.1.0",
    "@commitlint/config-conventional": "^20.0.0",
    "@testing-library/dom": "^10.4.1",
    "@testing-library/react-native": "^13.3.3",
    "@trivago/prettier-plugin-sort-imports": "^6.0.0",
    "@types/jest": "29.5.14",
    "@types/react": "~19.1.0",
    "eslint": "^9.0.0",
    "eslint-config-expo": "~10.0.0",
    "eslint-plugin-jest": "^29.2.1",
    "eslint-plugin-jest-dom": "^5.5.0",
    "eslint-plugin-testing-library": "^7.13.5",
    "husky": "^9.1.7",
    "jest": "~29.7.0",
    "jest-expo": "~54.0.13",
    "lint-staged": "^16.2.7",
    "prettier": "^3.6.2",
    "standard-version": "^9.5.0",
    "typescript": "~5.9.2"
  }
}
