-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 4.52 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
{
"name": "gloddy",
"version": "0.0.1",
"private": true,
"scripts": {
"start-android:dev": "react-native run-android --variant=developmentdebug",
"start-android:staging": "react-native run-android --variant=stagingdebug",
"start-android:prod": "react-native run-android --variant=productiondebug",
"build-android:production-release-bundle": "cd android && ./gradlew bundleProductionRelease && killall -9 java && open ./android/app/build/outputs/bundle/production/release",
"build-android:production-release-apk": "cd android && ./gradlew assembleProductionRelease && killall -9 java && open ./android/app/build/outputs/apk/production/release",
"build-android:production-debug-apk": "cd android && ./gradlew assembleProductionDebug && killall -9 java && open ./android/app/build/outputs/apk/production/debug",
"build-android:staging-release-apk": "cd android && ./gradlew assembleStagingRelease && killall -9 java && open ./android/app/build/outputs/apk/staging/release",
"build-android:staging-debug-apk": "cd android && ./gradlew assembleStagingDebug && killall -9 java && open ./android/app/build/outputs/apk/staging/debug",
"build-android:developement-release-apk": "cd android && ./gradlew assembleDevelopmentRelease && killall -9 java && open ./android/app/build/outputs/apk/development/release",
"build-android:development-debug-apk": "cd android && ./gradlew assembleDevelopmentDebug && killall -9 java && open ./android/app/build/outputs/apk/development/debug",
"start-ios:production": "react-native run-ios --scheme GloddyProd",
"start-ios:staging": "react-native run-ios --scheme GloddyStaging",
"start-ios:development": "react-native run-ios --scheme GloddyDev",
"codepush-android:staging": "appcenter codepush release-react -a gueit214/gloddy_android -d Staging",
"codepush-android:production": "appcenter codepush release-react -a gueit214/gloddy_android -d Production",
"codepush-ios:staging": "appcenter codepush release-react -a gueit214/gloddy -d Staging",
"codepush-ios:production": "appcenter codepush release-react -a gueit214/gloddy -d Production",
"lint": "eslint .",
"lint:fix": "eslint '**/*.{js,jsx,ts,tsx}' --fix",
"format": "prettier --write --ignore-path .gitignore ."
},
"dependencies": {
"@notifee/react-native": "^7.8.0",
"@react-native-async-storage/async-storage": "^1.19.3",
"@react-native-community/push-notification-ios": "^1.11.0",
"@react-native-firebase/analytics": "^18.5.0",
"@react-native-firebase/app": "^18.5.0",
"@react-native-firebase/messaging": "^18.5.0",
"@react-native-masked-view/masked-view": "^0.2.9",
"@react-navigation/bottom-tabs": "^6.5.11",
"@react-navigation/devtools": "^6.0.20",
"@react-navigation/native": "^6.1.9",
"@react-navigation/stack": "^6.3.20",
"babel-plugin-module-resolver": "^5.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-babel-module": "^5.3.2",
"eslint-plugin-prettier": "^5.0.1",
"react": "18.2.0",
"react-native": "0.72.3",
"react-native-animated-pagination-dots": "^0.1.73",
"react-native-code-push": "^8.1.0",
"react-native-config": "^1.5.1",
"react-native-flipper": "^0.212.0",
"react-native-gesture-handler": "^2.12.1",
"react-native-localize": "^3.0.2",
"react-native-permissions": "^3.8.4",
"react-native-push-notification": "^8.1.1",
"react-native-reanimated": "^3.4.1",
"react-native-restart": "^0.0.27",
"react-native-safe-area-context": "^4.7.1",
"react-native-screens": "^3.23.0",
"react-native-splash-screen": "^3.3.0",
"react-native-svg": "^13.13.0",
"react-native-svg-transformer": "^1.1.0",
"react-native-swiper-flatlist": "^3.2.3",
"react-native-webview": "^13.6.2"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native/eslint-config": "^0.72.2",
"@react-native/metro-config": "^0.72.9",
"@tsconfig/react-native": "^3.0.0",
"@types/react": "^18.0.24",
"@types/react-native-push-notification": "^8.1.2",
"@types/react-test-renderer": "^18.0.0",
"eslint": "^8.53.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"i": "^0.3.7",
"metro-react-native-babel-preset": "0.76.7",
"prettier": "^2.4.1",
"react-test-renderer": "18.2.0",
"typescript": "4.8.4"
},
"engines": {
"node": ">=16"
}
}