-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·66 lines (66 loc) · 2.4 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
{
"name": "ouvidor",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"makeDebug": "cd ./android && sudo ./gradlew assembleDebug && mv ./app/build/outputs/apk/debug/app-debug.apk /var/www/apks/ouvidor-debug.apk",
"makeRelease": "cd ./android && sudo ./gradlew assembleRelease && mv ./app/build/outputs/apk/release/app-release.apk /var/www/apks/ouvidor-release.apk"
},
"dependencies": {
"@react-native-community/async-storage": "^1.7.1",
"@react-native-community/cameraroll": "^1.6.0",
"@react-native-community/geolocation": "^2.0.2",
"@react-native-community/masked-view": "^0.1.6",
"@react-native-community/netinfo": "^5.7.0",
"@react-navigation/bottom-tabs": "^5.0.0-alpha.39",
"@react-navigation/core": "^5.0.0-alpha.35",
"@react-navigation/native": "^5.0.0-alpha.27",
"@react-navigation/stack": "^5.0.0-alpha.61",
"axios": "^0.19.2",
"date-fns": "^2.14.0",
"lottie-react-native": "^3.3.2",
"react": "16.9.0",
"react-native": "0.61.5",
"react-native-device-info": "^5.5.4",
"react-native-document-picker": "^3.5.2",
"react-native-flash-message": "^0.1.15",
"react-native-gesture-handler": "^1.5.3",
"react-native-linear-gradient": "^2.5.6",
"react-native-map-clustering": "^3.3.9",
"react-native-maps": "0.26.1",
"react-native-modal": "^11.5.6",
"react-native-reanimated": "^1.7.0",
"react-native-safe-area-context": "^0.6.2",
"react-native-screens": "^2.0.0-alpha.29",
"react-native-splash-screen": "^3.2.0",
"react-native-svg": "^12.1.0",
"react-native-vector-icons": "^6.6.0",
"rn-fetch-blob": "^0.12.0",
"styled-components": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/runtime": "^7.6.2",
"@react-native-community/eslint-config": "^0.0.5",
"babel-jest": "^24.9.0",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "7.14.3",
"jest": "^24.9.0",
"metro-react-native-babel-preset": "^0.56.0",
"prettier": "^1.18.2",
"react-test-renderer": "16.9.0"
},
"jest": {
"preset": "react-native"
}
}