-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 4.52 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 4.52 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
{
"name": "MyReactNativeApp",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "ENVFILE=.env.development react-native run-android",
"android:dev": "ENVFILE=.env.development react-native run-android",
"android:prod": "ENVFILE=.env.production react-native run-android --variant=release",
"ios": "ENVFILE=.env.development react-native run-ios --mode Debug",
"ios:dev": "ENVFILE=.env.development react-native run-ios --mode Debug",
"ios:prod": "ENVFILE=.env.production react-native run-ios --configuration Release",
"lint": "eslint .",
"start": "react-native start --reset-cache",
"test": "npm run test:jest",
"test:jest": "jest --testPathIgnorePatterns=e2e --verbose",
"test:jest:watch": "jest --testPathIgnorePatterns=e2e --watch",
"test:jest:coverage": "jest --testPathIgnorePatterns=e2e --coverage",
"test:detox:ios": "detox test --configuration ios.sim.debug",
"test:detox:android": "detox test --configuration android.emu.debug",
"test:maestro": "maestro test .maestro/",
"test:maestro:studio": "maestro studio",
"test:all": "npm run test:jest && npm run test:maestro && npm run test:detox:ios",
"build:e2e:ios": "detox build --configuration ios.sim.debug",
"build:e2e:android": "detox build --configuration android.emu.debug",
"postinstall": "patch-package && sed -i '' 's|https://boostorg.jfrog.io/artifactory/main/release/1.76.0/source/boost_1_76_0.tar.bz2|https://sourceforge.net/projects/boost/files/boost/1.76.0/boost_1_76_0.tar.bz2|g' node_modules/react-native/third-party-podspecs/boost.podspec",
"clear": "cd android && ./gradlew clean && cd ..",
"clean:android": "cd android && ./gradlew clean && cd ..",
"pod": "cd ios && pod deintegrate && pod update && pod cache clean --all && pod install && cd ..",
"install:pod": "npm install && cd ios && pod deintegrate && pod update && pod cache clean --all && pod install && cd ..",
"ios:release": "ENVFILE=.env.production npx react-native run-ios --configuration Release",
"android:release": "ENVFILE=.env.production npx react-native run-android --variant=release",
"reset:ios": "watchman watch-del-all && rm -rf $TMPDIR/metro-* && rm -rf $TMPDIR/react-* && cd ios && rm -rf build/ && (rm -rf ~/Library/Developer/Xcode/DerivedData/MyReactNativeApp-* 2>/dev/null || true) && rm -rf Pods/ Podfile.lock && pod install && cd .. && echo 'iOS environment reset complete!'",
"reset:watchman": "watchman watch-del-all",
"reset:metro": "rm -rf $TMPDIR/metro-* && rm -rf $TMPDIR/react-* && npx react-native start --reset-cache",
"clean:ios": "cd ios && rm -rf build/ && (rm -rf ~/Library/Developer/Xcode/DerivedData/MyReactNativeApp-* 2>/dev/null || true) && cd ..",
"setup-icons": "node scripts/setup-icons.js",
"clean:pods": "cd ios && rm -rf Pods/ Podfile.lock && pod cache clean --all && pod install && cd .."
},
"dependencies": {
"@react-navigation/native": "^6.1.18",
"@react-navigation/native-stack": "^6.11.0",
"@reduxjs/toolkit": "^2.9.0",
"axios": "^1.12.2",
"react": "18.2.0",
"react-native": "0.72.6",
"react-native-config": "^1.4.6",
"react-native-dotenv": "^3.4.11",
"react-native-fast-image": "^8.6.3",
"react-native-haptic-feedback": "^2.3.3",
"react-native-safe-area-context": "4.8.2",
"react-native-screens": "3.29.0",
"react-redux": "^9.2.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@bam.tech/react-native-make": "^3.0.3",
"@react-native/eslint-config": "^0.72.2",
"@react-native/metro-config": "^0.72.11",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^13.3.3",
"@tsconfig/react-native": "^3.0.0",
"@types/react": "^18.0.24",
"@types/react-test-renderer": "^18.0.0",
"@types/redux-mock-store": "^1.5.0",
"babel-jest": "^29.2.1",
"detox": "^20.43.0",
"detox-cli": "^20.0.0",
"eslint": "^8.19.0",
"fs-extra": "^11.3.2",
"jest": "^29.2.1",
"jest-circus": "^30.2.0",
"jest-mock-extended": "^4.0.0",
"metro-react-native-babel-preset": "0.76.8",
"patch-package": "^8.0.1",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.4.1",
"react-test-renderer": "18.2.0",
"redux-mock-store": "^1.5.5",
"sharp": "^0.34.4",
"typescript": "4.8.4"
},
"engines": {
"node": ">=16"
},
"packageManager": "yarn@4.9.4+sha512.7b1cb0b62abba6a537b3a2ce00811a843bea02bcf53138581a6ae5b1bf563f734872bd47de49ce32a9ca9dcaff995aa789577ffb16811da7c603dcf69e73750b"
}