-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 4.3 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
{
"name": "proj_pronetplat_aa",
"version": "1.4.14",
"private": true,
"scripts": {
"android-dev": "cd android && ./gradlew clean && cd .. && react-native run-android --variant=devDebug --appIdSuffix=dev",
"android-production": "react-native run-android --variant=productionRelease",
"start": "react-native start",
"test": "jest",
"eslint": "eslint \"**/*.js\" --fix",
"prettier": "prettier \"**/*.js\" --write",
"lint": "npm run prettier && npm run eslint",
"postinstall": "husky install && patch-package",
"bootsplash": "react-native generate-bootsplash assets/bootsplash_logo_original.png --background-color=28003A --logo-width=150 --flavor=main",
"patch-packages": "patch-package react-native-paper react-native-push-notification-popup rn-placeholder",
"bundle-js": "react-native bundle --entry-file index.js --bundle-output ios/main.jsbundle",
"postversion": "react-native-version -d android/app/template.build.gradle",
"setup-android": "node scripts/setupAndroid.js",
"setup-ios": "node scripts/setupIos.js",
"update-pods": "cli-confirm \"Proceed?\" && rm -rf node_modules ios/Pods ios/Podfile.lock && yarn && cd ios && pod install --repo-update && cd .."
},
"dependencies": {
"@react-native-community/geolocation": "^2.0.2",
"@react-native-community/masked-view": "^0.1.11",
"@react-native-community/netinfo": "^6.0.2",
"@react-native-firebase/analytics": "^12.8.0",
"@react-native-firebase/app": "^12.8.0",
"@react-native-firebase/crashlytics": "^12.8.0",
"@react-native-firebase/messaging": "^12.8.0",
"@react-navigation/bottom-tabs": "^6.0.5",
"@react-navigation/drawer": "^6.1.4",
"@react-navigation/native": "^6.0.2",
"@react-navigation/stack": "^6.0.7",
"date-fns": "^2.24.0",
"expo-image-picker": "^10.2.3",
"fluxible-js": "^5.0.14",
"jsc-android": "^250230.2.1",
"postinstall-postinstall": "^2.1.0",
"react": "17.0.2",
"react-fluxible": "^5.0.4",
"react-native": "0.65.1",
"react-native-add-calendar-event": "^4.0.0",
"react-native-animatable": "^1.3.3",
"react-native-background-timer": "^2.4.1",
"react-native-bootsplash": "^3.2.5",
"react-native-bouncy-checkbox": "^2.1.4",
"react-native-camera-kit": "^11.2.1",
"react-native-config": "^1.4.4",
"react-native-device-info": "^8.3.3",
"react-native-fs": "^2.18.0",
"react-native-gesture-handler": "^1.10.3",
"react-native-google-places": "^3.1.2",
"react-native-keyboard-accessory": "^0.1.15",
"react-native-maps": "^0.29.3",
"react-native-mime-types": "^2.3.0",
"react-native-modalize": "^2.0.8",
"react-native-paper": "^4.9.2",
"react-native-permissions": "^3.0.5",
"react-native-portalize": "^1.0.7",
"react-native-push-notification-popup": "^1.6.0",
"react-native-qrcode-svg": "^6.1.1",
"react-native-reanimated": "^2.2.2",
"react-native-responsive-image-view": "^2.1.0",
"react-native-safe-area-context": "^3.3.2",
"react-native-screens": "^3.7.2",
"react-native-sensitive-info": "^6.0.0-alpha.8",
"react-native-svg": "^12.1.1",
"react-native-unimodules": "^0.14.8",
"react-native-vector-icons": "^8.1.0",
"react-native-walkthrough-tooltip": "^1.3.0",
"rn-placeholder": "^3.0.3"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/eslint-parser": "^7.15.4",
"@babel/runtime": "^7.15.4",
"@react-native-community/eslint-config": "^3.0.1",
"babel-jest": "^27.2.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-optional-require": "^0.3.1",
"babel-plugin-transform-remove-console": "^6.9.4",
"cli-confirm": "^1.0.1",
"eslint": "^7.32.0",
"eslint-import-resolver-babel-module": "^5.3.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-module-resolver": "^1.4.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.2",
"jest": "^27.2.0",
"jetifier": "^2.0.0",
"lint-staged": "^11.1.2",
"metro-react-native-babel-preset": "^0.66.2",
"patch-package": "^6.4.7",
"prettier": "^2.4.1",
"react-native-codegen": "^0.0.7",
"react-native-version": "^4.0.0",
"react-test-renderer": "17.0.2",
"source-map": "^0.7.3"
},
"jest": {
"preset": "react-native"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
]
}
}