This repository has been archived by the owner on Apr 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.87 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
{
"name": "dropy",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"apk-android": "react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/build/intermediates/res/merged/release/ && cd android && ./gradlew assembleRelease && cd ..",
"bundle-android": "cd android && ./gradlew bundleRelease && cd ..",
"ios": "react-native run-ios --simulator='iPhone 14 Pro'",
"start": "react-native start",
"test": "jest",
"lint": "eslint \"**/*.{js,jsx}\"",
"lint:fix": "eslint \"**/*.{js,jsx}\" --fix",
"postinstall": "patch-package"
},
"dependencies": {
"@expo-google-fonts/space-grotesk": "^0.2.2",
"@expo/react-native-action-sheet": "^3.13.0",
"@expo/vector-icons": "^13.0.0",
"@react-native-async-storage/async-storage": "^1.17.11",
"@react-native-community/blur": "^4.3.0",
"@react-native-community/geolocation": "^3.0.4",
"@react-navigation/native": "^6.1.1",
"@react-navigation/stack": "^6.3.10",
"@sentry/react-native": "^4.14.0",
"axios": "^1.2.2",
"crypto-js": "v3.1.9-1",
"expo": "^45.0.5",
"expo-font": "^10.1.0",
"expo-haptics": "^11.2.0",
"metro-config": "^0.74.1",
"ngeohash": "^0.6.3",
"react": "17.0.2",
"react-native": "0.68.5",
"react-native-background-fetch": "^4.1.7",
"react-native-background-geolocation": "^4.9.4",
"react-native-compass-heading": "^1.4.2",
"react-native-config": "^1.4.11",
"react-native-device-info": "^10.1.1",
"react-native-fast-image": "^8.6.3",
"react-native-geolocation-service": "^5.3.1",
"react-native-gesture-handler": "^2.8.0",
"react-native-image-crop-picker": "^0.39.0",
"react-native-image-resizer": "^1.4.5",
"react-native-inappbrowser-reborn": "^3.6.3",
"react-native-keyboard-spacer": "^0.4.1",
"react-native-linear-gradient": "^2.6.2",
"react-native-maps": "^1.3.2",
"react-native-notifications": "^4.3.1",
"react-native-permissions": "^3.3.1",
"react-native-responsive-dimensions": "^3.1.1",
"react-native-safe-area-context": "^4.3.1",
"react-native-screens": "^3.18.2",
"react-native-splash-screen": "^3.3.0",
"react-native-svg": "^13.6.0",
"react-native-svg-transformer": "^1.0.0",
"socket.io-client": "^4.5.1"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"eslint": "^8.31.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-import-newlines": "^1.3.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-react-native": "^4.0.0",
"husky": "^8.0.2",
"metro-react-native-babel-preset": "^0.74.1",
"patch-package": "^6.5.1"
}
}