Compare commits
5 commits
7a134c7906
...
05ef28f3b5
| Author | SHA1 | Date | |
|---|---|---|---|
| 05ef28f3b5 | |||
| 2aac20ccee | |||
| 26aded3684 | |||
| 1421f4f308 | |||
| e701262ef3 |
10 changed files with 12695 additions and 51 deletions
6
.buckconfig
Normal file
6
.buckconfig
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
|
||||||
|
[android]
|
||||||
|
target = Google Inc.:Google APIs:23
|
||||||
|
|
||||||
|
[maven_repositories]
|
||||||
|
central = https://repo1.maven.org/maven2
|
||||||
40
.eslintrc.js
Normal file
40
.eslintrc.js
Normal file
|
|
@ -0,0 +1,40 @@
|
||||||
|
module.exports = {
|
||||||
|
root: true,
|
||||||
|
extends: [
|
||||||
|
'airbnb',
|
||||||
|
'plugin:flowtype/recommended',
|
||||||
|
'prettier',
|
||||||
|
'prettier/flowtype',
|
||||||
|
'prettier/react',
|
||||||
|
],
|
||||||
|
parser: 'babel-eslint',
|
||||||
|
plugins: ['flowtype'],
|
||||||
|
env: {
|
||||||
|
jest: true,
|
||||||
|
},
|
||||||
|
rules: {
|
||||||
|
'flowtype/define-flow-type': 1,
|
||||||
|
'flowtype/no-mixed': 2,
|
||||||
|
'flowtype/no-primitive-constructor-types': 2,
|
||||||
|
'flowtype/no-types-missing-file-annotation': 2,
|
||||||
|
'flowtype/no-weak-types': 2,
|
||||||
|
'flowtype/require-parameter-type': 2,
|
||||||
|
'flowtype/require-readonly-react-props': 0,
|
||||||
|
'flowtype/require-return-type': [
|
||||||
|
2,
|
||||||
|
'always',
|
||||||
|
{
|
||||||
|
annotateUndefined: 'never',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
'flowtype/require-valid-file-annotation': 2,
|
||||||
|
'flowtype/type-id-match': [2, '^([A-Z][a-z0-9]+)+Type$'],
|
||||||
|
'flowtype/use-flow-type': 1,
|
||||||
|
'flowtype/valid-syntax': 1,
|
||||||
|
},
|
||||||
|
settings: {
|
||||||
|
flowtype: {
|
||||||
|
onlyFilesWithFlowAnnotation: false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
11
.flowconfig
11
.flowconfig
|
|
@ -1,11 +0,0 @@
|
||||||
[ignore]
|
|
||||||
|
|
||||||
[include]
|
|
||||||
|
|
||||||
[libs]
|
|
||||||
|
|
||||||
[lints]
|
|
||||||
|
|
||||||
[options]
|
|
||||||
|
|
||||||
[strict]
|
|
||||||
1
.gitattributes
vendored
Normal file
1
.gitattributes
vendored
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
*.pbxproj -text
|
||||||
28
.gitignore
vendored
28
.gitignore
vendored
|
|
@ -1,23 +1,3 @@
|
||||||
node_modules/**/*
|
|
||||||
.expo/*
|
|
||||||
npm-debug.*
|
|
||||||
*.jks
|
|
||||||
*.p12
|
|
||||||
*.key
|
|
||||||
*.mobileprovision
|
|
||||||
*.orig.*
|
|
||||||
web-build/
|
|
||||||
web-report/
|
|
||||||
/.expo-shared/
|
|
||||||
/package-lock.json
|
|
||||||
|
|
||||||
!/.idea/
|
|
||||||
/.idea/*
|
|
||||||
!/.idea/runConfigurations
|
|
||||||
|
|
||||||
# The following contents were automatically generated by expo-cli during eject
|
|
||||||
# ----------------------------------------------------------------------------
|
|
||||||
|
|
||||||
# OSX
|
# OSX
|
||||||
#
|
#
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
@ -40,7 +20,6 @@ DerivedData
|
||||||
*.hmap
|
*.hmap
|
||||||
*.ipa
|
*.ipa
|
||||||
*.xcuserstate
|
*.xcuserstate
|
||||||
project.xcworkspace
|
|
||||||
|
|
||||||
# Android/IntelliJ
|
# Android/IntelliJ
|
||||||
#
|
#
|
||||||
|
|
@ -60,6 +39,9 @@ yarn-error.log
|
||||||
buck-out/
|
buck-out/
|
||||||
\.buckd/
|
\.buckd/
|
||||||
*.keystore
|
*.keystore
|
||||||
|
!debug.keystore
|
||||||
|
*.jks
|
||||||
|
/android/gradle.properties
|
||||||
|
|
||||||
# fastlane
|
# fastlane
|
||||||
#
|
#
|
||||||
|
|
@ -77,7 +59,3 @@ buck-out/
|
||||||
|
|
||||||
# CocoaPods
|
# CocoaPods
|
||||||
/ios/Pods/
|
/ios/Pods/
|
||||||
|
|
||||||
# Expo
|
|
||||||
.expo/*
|
|
||||||
/android/gradle.properties
|
|
||||||
|
|
|
||||||
6
.prettierrc.js
Normal file
6
.prettierrc.js
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
module.exports = {
|
||||||
|
bracketSpacing: false,
|
||||||
|
jsxBracketSameLine: true,
|
||||||
|
singleQuote: true,
|
||||||
|
trailingComma: 'all',
|
||||||
|
};
|
||||||
BIN
android/app/debug.keystore
Normal file
BIN
android/app/debug.keystore
Normal file
Binary file not shown.
Binary file not shown.
|
Before Width: | Height: | Size: 111 KiB After Width: | Height: | Size: 80 KiB |
12615
package-lock.json
generated
Normal file
12615
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
39
package.json
39
package.json
|
|
@ -24,9 +24,9 @@
|
||||||
"@react-native-community/masked-view": "^0.1.10",
|
"@react-native-community/masked-view": "^0.1.10",
|
||||||
"@react-native-community/push-notification-ios": "^1.4.0",
|
"@react-native-community/push-notification-ios": "^1.4.0",
|
||||||
"@react-native-community/slider": "^3.0.3",
|
"@react-native-community/slider": "^3.0.3",
|
||||||
"@react-navigation/bottom-tabs": "^5.7.2",
|
"@react-navigation/bottom-tabs": "^5.7.3",
|
||||||
"@react-navigation/native": "^5.7.1",
|
"@react-navigation/native": "^5.7.2",
|
||||||
"@react-navigation/stack": "^5.7.1",
|
"@react-navigation/stack": "^5.8.0",
|
||||||
"i18n-js": "^3.7.1",
|
"i18n-js": "^3.7.1",
|
||||||
"react": "16.13.1",
|
"react": "16.13.1",
|
||||||
"react-native": "0.63.2",
|
"react-native": "0.63.2",
|
||||||
|
|
@ -34,38 +34,47 @@
|
||||||
"react-native-app-intro-slider": "^4.0.4",
|
"react-native-app-intro-slider": "^4.0.4",
|
||||||
"react-native-appearance": "^0.3.4",
|
"react-native-appearance": "^0.3.4",
|
||||||
"react-native-autolink": "^3.0.0",
|
"react-native-autolink": "^3.0.0",
|
||||||
"react-native-calendars": "^1.300.0",
|
"react-native-calendars": "^1.301.0",
|
||||||
"react-native-camera": "^3.33.0",
|
"react-native-camera": "^3.35.0",
|
||||||
"react-native-collapsible": "^1.5.2",
|
"react-native-collapsible": "^1.5.3",
|
||||||
"react-native-gesture-handler": "^1.7.0",
|
"react-native-gesture-handler": "^1.7.0",
|
||||||
"react-native-image-modal": "^1.0.9",
|
"react-native-image-modal": "^1.0.9",
|
||||||
"react-native-keychain": "^6.1.1",
|
"react-native-keychain": "^6.1.1",
|
||||||
"react-native-linear-gradient": "^2.5.6",
|
"react-native-linear-gradient": "^2.5.6",
|
||||||
"react-native-localize": "^1.4.0",
|
"react-native-localize": "^1.4.1",
|
||||||
"react-native-modalize": "^2.0.4",
|
"react-native-modalize": "^2.0.5",
|
||||||
"react-native-paper": "^4.0.1",
|
"react-native-paper": "^4.0.1",
|
||||||
"react-native-permissions": "^2.1.5",
|
"react-native-permissions": "^2.1.5",
|
||||||
"react-native-push-notification": "^4.0.0",
|
"react-native-push-notification": "^4.0.0",
|
||||||
"react-native-reanimated": "^1.10.1",
|
"react-native-reanimated": "^1.10.1",
|
||||||
"react-native-render-html": "^4.2.1",
|
"react-native-render-html": "^4.2.2",
|
||||||
"react-native-safe-area-context": "0.7.3",
|
"react-native-safe-area-context": "0.7.3",
|
||||||
"react-native-screens": "^2.9.0",
|
"react-native-screens": "^2.9.0",
|
||||||
"react-native-splash-screen": "^3.2.0",
|
"react-native-splash-screen": "^3.2.0",
|
||||||
"react-native-vector-icons": "^7.0.0",
|
"react-native-vector-icons": "^7.0.0",
|
||||||
"react-native-webview": "^10.3.2",
|
"react-native-webview": "^10.3.3",
|
||||||
"react-navigation-collapsible": "^5.6.4",
|
"react-navigation-collapsible": "^5.6.4",
|
||||||
"react-navigation-header-buttons": "^4.0.2"
|
"react-navigation-header-buttons": "^5.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/core": "^7.8.4",
|
"@babel/core": "^7.11.0",
|
||||||
"@babel/runtime": "^7.8.4",
|
"@babel/preset-flow": "^7.10.4",
|
||||||
"@react-native-community/eslint-config": "^1.1.0",
|
"@babel/runtime": "^7.11.0",
|
||||||
|
"babel-eslint": "^10.1.0",
|
||||||
"babel-jest": "^25.1.0",
|
"babel-jest": "^25.1.0",
|
||||||
"eslint": "6.5.1",
|
"eslint": "^7.2.0",
|
||||||
|
"eslint-config-airbnb": "^18.2.0",
|
||||||
|
"eslint-config-prettier": "^6.11.0",
|
||||||
|
"eslint-plugin-flowtype": "^5.2.0",
|
||||||
|
"eslint-plugin-import": "^2.22.0",
|
||||||
|
"eslint-plugin-jsx-a11y": "^6.3.1",
|
||||||
|
"eslint-plugin-react": "^7.20.5",
|
||||||
|
"eslint-plugin-react-hooks": "^4.0.0",
|
||||||
"flow-bin": "^0.123.0",
|
"flow-bin": "^0.123.0",
|
||||||
"jest": "^25.1.0",
|
"jest": "^25.1.0",
|
||||||
"jest-extended": "^0.11.5",
|
"jest-extended": "^0.11.5",
|
||||||
"metro-react-native-babel-preset": "^0.59.0",
|
"metro-react-native-babel-preset": "^0.59.0",
|
||||||
|
"prettier": "2.0.5",
|
||||||
"react-test-renderer": "16.13.1"
|
"react-test-renderer": "16.13.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue