-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 6.58 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 6.58 KB
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
123
124
{
"name": "learnerapp",
"version": "0.0.1",
"private": true,
"scripts": {
"install_step1": "cd android && ./gradlew clean && cd .. && rm -rf node_modules package-lock.json && npm install --legacy-peer-deps && npm install [email protected] --save --force && npx patch-package react-native-config",
"install_step2": "npm install [email protected] --save --force && npm install [email protected] --save --force",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"prettier-check": "prettier --check \"src/**/*.{js,jsx,ts,tsx}\"",
"android:launch": " cd .. && adb shell am start -n com.pratham.learning/.MainActivity",
"android:dev": "ENVFILE=.env.dev && cd android && ./gradlew assembleDevDebug && ./gradlew installDevDebug -PreactNativeDevServerPort=8081 && npm run android:launch",
"android:uat": "ENVFILE=.env.uat && cd android && ./gradlew assembleUatDebug && ./gradlew installUatDebug -PreactNativeDevServerPort=8081 && npm run android:launch",
"android:prod": "ENVFILE=.env.prod && cd android && ./gradlew assembleProdDebug && ./gradlew installProdDebug -PreactNativeDevServerPort=8081 && npm run android:launch",
"android:debug": "cd android && ./gradlew clean && cd .. && react-native bundle --platform android --dev true --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res && cd android && ./gradlew assembleDebug && cd ..",
"android:dev_debug_apk": "export ENVFILE=.env.dev && npm run android:debug",
"android:uat_debug_apk": "export ENVFILE=.env.uat && npm run android:debug",
"android:prod_debug_apk": "export ENVFILE=.env.prod && npm run android:debug",
"android:release": "cd android && ./gradlew clean && cd .. && 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/ && rm -rf android/app/src/main/res/drawable-* && rm -rf android/app/src/main/res/raw/* && cd android && ./gradlew assembleRelease && cd ..",
"android:dev_release_apk": "export ENVFILE=.env.dev && npm run android:release",
"android:uat_release_apk": "export ENVFILE=.env.uat && npm run android:release",
"android:prod_release_apk": "export ENVFILE=.env.prod && npm run android:release",
"android:signed": "cd android && ./gradlew clean && cd .. && 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/ && rm -rf android/app/src/main/res/drawable-* && rm -rf android/app/src/main/res/raw/* && cd android && ./gradlew bundleRelease && cd ..",
"android:dev_signed_bundle_aab": "export ENVFILE=.env.dev && npm run android:signed",
"android:uat_signed_bundle_aab": "export ENVFILE=.env.uat && npm run android:signed",
"android:prod_signed_bundle_aab": "export ENVFILE=.env.prod && npm run android:signed"
},
"dependencies": {
"@changwoolab/react-native-fast-image": "^8.6.7",
"@eva-design/eva": "^2.2.0",
"@hookform/resolvers": "^3.7.0",
"@project-sunbird/content-player": "^5.1.0",
"@react-native-async-storage/async-storage": "^1.24.0",
"@react-native-clipboard/clipboard": "^1.14.2",
"@react-native-community/cli": "^13.6.9",
"@react-native-community/datetimepicker": "github:react-native-community/datetimepicker",
"@react-native-community/netinfo": "^11.3.2",
"@react-native-firebase/analytics": "^21.0.0",
"@react-native-firebase/app": "^21.5.0",
"@react-native-firebase/messaging": "^21.5.0",
"@react-navigation/bottom-tabs": "^6.6.0",
"@react-navigation/native": "^6.1.17",
"@react-navigation/native-stack": "^6.9.26",
"@ui-kitten/components": "^5.3.1",
"@ui-kitten/eva-icons": "^5.3.1",
"axios": "^1.7.2",
"date-fns": "^4.1.0",
"deps": "^1.0.0",
"eva-icons": "^1.1.3",
"inquirer": "^12.5.0",
"legacy": "^0.0.3",
"moment": "^2.30.1",
"peer": "^1.0.2",
"prop-types": "^15.8.1",
"react": "18.2.0",
"react-hook-form": "^7.52.1",
"react-native": "0.74.2",
"react-native-background-fetch": "^4.2.5",
"react-native-calendars": "^1.1307.0",
"react-native-change-icon": "^5.0.0",
"react-native-check-version": "^1.3.0",
"react-native-config": "^1.5.1",
"react-native-copilot": "^3.3.3",
"react-native-device-info": "^11.1.0",
"react-native-fs": "^2.20.0",
"react-native-geolocation-service": "^5.3.1",
"react-native-gesture-handler": "^2.16.2",
"react-native-image-picker": "^8.2.1",
"react-native-inappbrowser-reborn": "^3.7.0",
"react-native-linear-gradient": "^2.8.3",
"react-native-modal-datetime-picker": "^18.0.0",
"react-native-navigation-bar-color": "^2.0.2",
"react-native-network-logger": "^1.17.0",
"react-native-orientation-locker": "^1.7.0",
"react-native-otp-entry": "^1.8.2",
"react-native-pdf": "^6.7.5",
"react-native-permissions": "^5.4.2",
"react-native-push-notification": "^8.1.1",
"react-native-rename": "^3.2.16",
"react-native-render-html": "^6.3.4",
"react-native-restart": "^0.0.27",
"react-native-safe-area-context": "^4.10.5",
"react-native-screens": "^3.32.0",
"react-native-share": "^12.0.9",
"react-native-sqlite-storage": "^6.0.1",
"react-native-svg": "^14.1.0",
"react-native-swiper-flatlist": "^3.2.5",
"react-native-uuid": "^2.0.2",
"react-native-vector-icons": "^10.1.0",
"react-native-webview": "^13.12.5",
"react-native-youtube-iframe": "^2.4.1",
"react-native-zip-archive": "^7.0.0",
"yup": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@eslint/js": "^9.5.0",
"@react-native/babel-preset": "0.74.84",
"@react-native/eslint-config": "0.74.84",
"@react-native/metro-config": "^0.74.84",
"@react-native/typescript-config": "0.74.84",
"@types/react": "^18.2.6",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^29.6.3",
"babel-plugin-module-resolver": "^5.0.2",
"eslint": "^9.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-native": "^4.1.0",
"jest": "^29.6.3",
"react-test-renderer": "18.2.0",
"typescript": "5.0.4"
},
"engines": {
"node": ">=18"
}
}