Advertisement
Guest User

Untitled

a guest
Jan 17th, 2020
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.84 KB | None | 0 0
  1. {
  2. "main": "node_modules/expo/AppEntry.js",
  3. "private": true,
  4. "scripts": {
  5. "start": "expo start",
  6. "android": "expo start --android",
  7. "ios": "expo start --ios",
  8. "doctor": "expo doctor",
  9. "eject": "expo eject",
  10. "build:staging": "yarn build:staging:ios && yarn build:staging:android",
  11. "build:staging:ios": "expo build:ios --release-channel staging --no-wait",
  12. "build:staging:android": "expo build:android --release-channel staging -t app-bundle --no-wait",
  13. "build:stable": "yarn build:stable:ios && yarn build:stable:android",
  14. "build:stable:ios": "expo build:ios --release-channel stable --no-wait",
  15. "build:stable:android": "expo build:android --release-channel stable -t app-bundle --no-wait",
  16. "lint": "tslint --project ./tsconfig.json",
  17. "exportlint": "ts-unused-exports tsconfig.json --ignorePaths=App.ts --showLineNumber",
  18. "typecheck": "tsc --noEmit",
  19. "todo": "git grep --heading -EIn \"(TODO|FIXME):\"",
  20. "test": "jest --verbose",
  21. "testcov": "jest --coverage --verbose"
  22. },
  23. "dependencies": {
  24. "@babel/preset-env": "^7.6.0",
  25. "@badrap/result": "^0.2.5",
  26. "@expo/vector-icons": "^10.0.0",
  27. "@react-native-community/masked-view": "0.1.5",
  28. "@react-navigation/bottom-tabs": "^5.0.0-alpha.19",
  29. "@react-navigation/core": "^5.0.0-alpha.20",
  30. "@react-navigation/native": "^5.0.0-alpha.14",
  31. "@react-navigation/stack": "^5.0.0-alpha.34",
  32. "babel-jest": "^24.9.0",
  33. "babel-preset-expo": "^8.0.0",
  34. "dayjs": "^1.8.14",
  35. "deep-equal": "^1.1.0",
  36. "expo": "^36.0.0",
  37. "expo-cli": "^3.11.5",
  38. "expo-constants": "~8.0.0",
  39. "expo-haptics": "~8.0.0",
  40. "ical.js": "^1.3.0",
  41. "jest-expo": "^36.0.0",
  42. "mobx": "^5.9.4",
  43. "mobx-persist": "^0.4.1",
  44. "mobx-react-lite": "^1.4.1",
  45. "react": "16.9.0",
  46. "react-native": "https://github.com/expo/react-native/archive/sdk-36.0.1.tar.gz",
  47. "react-native-gesture-handler": "~1.5.0",
  48. "react-native-reanimated": "~1.4.0",
  49. "react-native-safe-area-context": "0.6.0",
  50. "react-native-safe-area-view": "^1.0.0",
  51. "react-native-screens": "2.0.0-alpha.12",
  52. "react-native-tableview-simple": "^2.0.1",
  53. "sentry-expo": "~2.0.0",
  54. "styled-components": "^5.0.0",
  55. "timsort": "^0.3.0",
  56. "uuid": "^3.3.3"
  57. },
  58. "devDependencies": {
  59. "@babel/plugin-proposal-class-properties": "^7.5.5",
  60. "@commitlint/config-conventional": "^8.2.0",
  61. "@types/deep-equal": "^1.0.1",
  62. "@types/hoist-non-react-statics": "^3.3.1",
  63. "@types/jest": "^24.0.18",
  64. "@types/node": "^12.0.0",
  65. "@types/react": "^16.9.0",
  66. "@types/react-dom": "^16.8.4",
  67. "@types/react-native": "^0.60.15",
  68. "@types/styled-components": "^4.4.2",
  69. "@types/timsort": "^0.3.0",
  70. "@types/uuid": "^3.4.5",
  71. "commitlint": "^8.2.0",
  72. "husky": "^3.0.9",
  73. "jest": "^24.9.0",
  74. "jest-fetch-mock": "^2.1.2",
  75. "react-native-testing-library": "^1.11.1",
  76. "ts-jest": "^24.0.2",
  77. "ts-unused-exports": "^5.1.0",
  78. "tslint": "^5.16.0",
  79. "tslint-react": "^4.0.0",
  80. "typescript": "^3.7.2"
  81. },
  82. "license": "GPL-3.0",
  83. "jest": {
  84. "preset": "jest-expo",
  85. "transform": {
  86. "^.+\\.jsx?$": "babel-jest",
  87. "^.+\\.tsx?$": "ts-jest"
  88. },
  89. "transformIgnorePatterns": [
  90. "node_modules/(?!(jest-)?react-native|react-clone-referenced-element|@react-native-community|expo(nent)?|@expo(nent)?/.*|react-navigation|@react-navigation/.*|@unimodules/.*|sentry-expo|native-base)"
  91. ],
  92. "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
  93. "moduleFileExtensions": [
  94. "ts",
  95. "tsx",
  96. "js",
  97. "jsx",
  98. "json",
  99. "android.ts",
  100. "android.tsx"
  101. ],
  102. "collectCoverageFrom": [
  103. "**/*.{ts,tsx}",
  104. "!**/node_modules/**",
  105. "!**/vendor/**"
  106. ],
  107. "setupFiles": [
  108. "./setupJest.ts"
  109. ],
  110. "globals": {
  111. "ts-jest": {
  112. "tsConfig": {
  113. "jsx": "react"
  114. }
  115. }
  116. }
  117. },
  118. "husky": {
  119. "hooks": {
  120. "pre-commit": "yarn typecheck && yarn lint && yarn exportlint",
  121. "pre-push": "yarn typecheck && yarn lint && yarn test && yarn exportlint",
  122. "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
  123. }
  124. },
  125. "commitlint": {
  126. "extends": [
  127. "@commitlint/config-conventional"
  128. ]
  129. }
  130. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement