1.0.3 • Published 4 years ago

react-native-template-aguila1 v1.0.3

Weekly downloads
13
License
-
Repository
-
Last release
4 years ago

Template

npx react-native init testTemplate --template aguila1

Package Json config

{
  "name": "react-native-template-react-native-aguila",
  "version": "1.0.0",
  "scripts": {
    "android": "react-native run-android",
    "ios": "react-native run-ios",
    "start": "react-native start",
    "test": "jest",
    "lint": "eslint .",
    "postinstall": "jetify"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.js": [
      "npm run lint",
      "git add"
    ]
  },
  "jest": {
    "preset": "@testing-library/react-native",
    "testMatch": [
      "**/__tests__/**/*.tests.js"
    ],
    "transformIgnorePatterns": [
      "node_modules/(?!(jest-)?react-native|@?react-navigation)"
    ],
    "verbose": true,
    "collectCoverageFrom": [
      "!src/services/api.js"
    ],
    "coverageDirectory": "__tests__/coverage",
    "moduleNameMapper": {
      "^~/(.*)": "<rootDir>/src/$1"
    }
  }
}