-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 4.05 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "cartografiasocial",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios --simulator='iPhone 8 Plus'",
"start": "react-native start --reset-cache",
"android-release": "npx jetify && cd android && ./gradlew assembleRelease --daemon",
"test": "jest",
"test:cov": "jest --coverage",
"lint": "eslint ./src",
"postinstall": "patch-package"
},
"dependencies": {
"@gorhom/bottom-sheet": "^4",
"@react-native-community/async-storage": "^1.12.1",
"@react-native-community/clipboard": "^1.5.1",
"@react-native-community/progress-bar-android": "^1.0.4",
"@react-native-community/progress-view": "^1.3.1",
"@react-native-firebase/app": "^12.7.5",
"@react-native-firebase/auth": "^12.7.5",
"@react-native-masked-view/masked-view": "^0.2.2",
"@react-navigation/drawer": "^6.1.3",
"@react-navigation/native": "^6.0.2",
"@react-navigation/stack": "^6.0.6",
"axios": "^0.21.1",
"babel-plugin-inline-import": "^3.0.0",
"form-data": "^2.3.3",
"lodash": "^4.17.21",
"lottie-ios": "^3.2.3",
"lottie-react-native": "^4.0.3",
"patch-package": "^6.4.2",
"prop-types": "^15.7.2",
"react": "16.13.1",
"react-native": "0.63.4",
"react-native-android-location-enabler": "^1.2.2",
"react-native-audio-recorder-player": "^3.2.0",
"react-native-camera": "^4.1.1",
"react-native-config": "^1.4.4",
"react-native-create-thumbnail": "^1.4.1",
"react-native-document-picker": "^7.1.0",
"react-native-geolocation-service": "^5.2.0",
"react-native-gesture-handler": "^1.10.3",
"react-native-image-picker": "^4.0.6",
"react-native-image-viewing": "^0.2.0",
"react-native-keyboard-aware-scroll-view": "^0.9.3",
"react-native-loading-spinner-overlay": "^2.0.0",
"react-native-maps": "^0.29.3",
"react-native-material-ripple": "^0.9.1",
"react-native-modal": "^13.0.0",
"react-native-normalize": "^1.0.1",
"react-native-pdf": "^6.3.0",
"react-native-permissions": "^3.0.1",
"react-native-popover-view": "^4.0.1",
"react-native-profile-picture": "^1.0.0",
"react-native-reanimated": "^2.2.0",
"react-native-safe-area-context": "^3.1.9",
"react-native-screens": "^2.18.0",
"react-native-snap-carousel": "^3.9.1",
"react-native-svg": "^12.1.0",
"react-native-svg-uri": "^1.2.3",
"react-native-vector-icons": "^8.1.0",
"react-native-video": "^5.1.1",
"react-native-video-controls": "^2.8.1",
"react-redux": "^7.2.2",
"reactotron-react-native": "^5.0.0",
"reactotron-redux": "^3.1.3",
"reactotron-redux-saga": "^4.2.3",
"redux": "^4.0.5",
"redux-persist": "^6.0.0",
"redux-saga": "^1.1.3",
"redux-thunk": "^2.3.0",
"rn-fetch-blob": "^0.12.0",
"rn-material-ui-textfield": "^1.0.2",
"styled-components": "^5.2.1",
"styled-system": "^5.1.5"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/runtime": "^7.8.4",
"@react-native-community/eslint-config": "^1.1.0",
"babel-jest": "^25.1.0",
"babel-plugin-module-resolver": "^4.1.0",
"enzyme": "^3.11.0",
"eslint": "^7.2.0",
"eslint-config-airbnb": "18.2.1",
"eslint-import-resolver-babel-module": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^4.2.5",
"jest": "^25.1.0",
"metro-react-native-babel-preset": "^0.59.0",
"prettier": "^2.2.1",
"react-native-svg-transformer": "^0.14.3",
"react-test-renderer": "16.13.1"
},
"jest": {
"preset": "react-native",
"collectCoverage": true,
"collectCoverageFrom": [
"./src/**/*.(t|j)s"
],
"coveragePathIgnorePatterns": [
"/dist/",
"/test/",
"/android/",
"/ios/",
".*\\.module\\.ts$",
".eslintrc.js"
],
"coverageDirectory": "./coverage",
"testEnvironment": "node"
},
"husky": {
"hooks": {
"pre-push": "yarn lint --fix --max-warnings=0"
}
}
}