-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 3.09 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
{
"name": "eCommerce",
"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 .",
"debug:mac": "npx 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/src/main/res && cd android && ./gradlew assembleDebug && cd ../ && cp ./android/app/build/outputs/apk/debug/app-debug.apk eCommerce_$(date +'%m_%d_%Y').apk && open .",
"debug": "npx 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/src/main/res && cd android && gradlew assembleDebug && cd ../ && copy android/app/build/outputs/apk/debug/app-debug.apk eCommerce.apk && start .",
"bundle:mac": "cd android && ./gradlew bundleRelease && cd ../ && cp ./android/app/build/outputs/bundle/release/app-release.aab ./eCommerce.aab && open .",
"bundle": "cd android && gradlew bundleRelease && cd ../ && cp ./android/app/build/outputs/bundle/release/app-release.aab ./eCommerce.aab && start .",
"release:mac": "cd android && ./gradlew app:assembleRelease && cd ../ && cp ./android/app/build/outputs/apk/release/app-release.apk ./eCommerce_$(date +'%m_%d_%Y').apk && open .",
"release": "cd android && gradlew app:assembleRelease && cd ../ && cp ./android/app/build/outputs/apk/release/app-release.apk ./eCommerce_$(date +'%m_%d_%Y').apk && start ."
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.17.10",
"@react-native-masked-view/masked-view": "^0.2.8",
"@react-navigation/bottom-tabs": "^6.4.0",
"@react-navigation/material-top-tabs": "^6.3.0",
"@react-navigation/native": "^6.0.13",
"@react-navigation/native-stack": "^6.9.0",
"@reduxjs/toolkit": "^1.8.5",
"axios": "^0.27.2",
"react": "18.1.0",
"react-native": "0.70.1",
"react-native-countdown-component": "^2.7.1",
"react-native-fast-image": "^8.6.3",
"react-native-keyboard-aware-scroll-view": "^0.9.5",
"react-native-linear-gradient": "^2.6.2",
"react-native-pager-view": "^6.0.1",
"react-native-progress": "^5.0.0",
"react-native-quick-actions": "^0.3.13",
"react-native-ratings": "^8.1.0",
"react-native-safe-area-context": "^4.4.1",
"react-native-screens": "^3.17.0",
"react-native-share": "^7.9.1",
"react-native-skeleton-placeholder": "^5.2.3",
"react-native-tab-view": "^3.3.0",
"react-native-toast-message": "^2.1.5",
"react-native-vector-icons": "^9.2.0",
"react-native-webview": "^11.23.1",
"react-redux": "^8.0.4",
"rn-range-slider": "^2.2.2"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"babel-jest": "^26.6.3",
"eslint": "^7.32.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.72.1",
"react-test-renderer": "18.1.0"
},
"jest": {
"preset": "react-native"
}
}