-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.76 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 3.76 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
{
"name": "react-native-boilerplate",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"lint": "eslint .",
"start": "react-native start --client-logs --reset-cache",
"test": "jest",
"postinstall": "patch-package",
"pod-install": "cd ios && pod install && cd ..",
"android:clean": "cd android && gradle clean && cd ..",
"android:release": "npx react-native run-android --variant=release",
"android:apk": "cd android && ./gradlew assembleRelease",
"android:keystore": "keytool -genkeypair -v -keystore android/app/development-release.keystore -alias key0 -keyalg RSA -keysize 2048 -validity 10000",
"android:sha256": "keytool -list -v -keystore android/app/development-release.keystore -alias key0 -storepass 123456 -keypass 123456",
"ios:clean": "xcodebuild clean -workspace QRGeneratorApp.xcworkspace -scheme QRGeneratorApp -configuration Debug",
"pod:ios": "cd ios && RCT_NEW_ARCH_ENABLED=0 pod install && cd .."
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@miblanchard/react-native-slider": "^2.6.0",
"@react-native-async-storage/async-storage": "^2.2.0",
"@react-native-camera-roll/camera-roll": "^7.10.2",
"@react-native-clipboard/clipboard": "^1.16.3",
"@react-native-community/datetimepicker": "^8.4.5",
"@react-native-community/netinfo": "^11.4.1",
"@react-native-community/slider": "^5.0.1",
"@react-navigation/bottom-tabs": "^7.4.7",
"@react-navigation/native": "^7.1.17",
"@react-navigation/native-stack": "^7.3.26",
"i18next": "^24.1.0",
"lucide-react-native": "^0.541.0",
"react": "19.0.0",
"react-hook-form": "^7.63.0",
"react-i18next": "^15.2.0",
"react-native": "0.78.3",
"react-native-actions-sheet": "^0.9.8",
"react-native-bootsplash": "^6.3.11",
"react-native-element-dropdown": "^2.12.4",
"react-native-event-listeners": "^1.0.7",
"react-native-flash-message": "^0.4.2",
"react-native-fs": "^2.20.0",
"react-native-gesture-handler": "^2.28.0",
"react-native-hole-view": "^3.0.1",
"react-native-image-crop-picker": "^0.51.0",
"react-native-keyboard-controller": "^1.18.6",
"react-native-modal-datetime-picker": "^18.0.0",
"react-native-permissions": "^5.2.1",
"react-native-reanimated": "^4.1.2",
"react-native-safe-area-context": "^5.0.0",
"react-native-screens": "^4.3.0",
"react-native-share": "12.0.9",
"react-native-svg": "^15.10.1",
"react-native-vision-camera": "^4.7.2",
"react-native-wheel-color-picker": "^1.3.1",
"react-native-wifi-reborn": "^4.13.6",
"react-native-worklets": "^0.6.0",
"react-select-country-list": "^2.2.3",
"rn-qr-generator": "^1.4.4",
"zod": "^4.1.11"
},
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/preset-env": "^7.25.3",
"@babel/runtime": "^7.25.0",
"@react-native-community/cli": "15.0.1",
"@react-native-community/cli-platform-android": "15.0.1",
"@react-native-community/cli-platform-ios": "15.0.1",
"@react-native/babel-preset": "0.78.3",
"@react-native/eslint-config": "0.78.3",
"@react-native/metro-config": "0.78.3",
"@react-native/typescript-config": "0.78.3",
"@types/jest": "^29.5.13",
"@types/react": "^19.0.0",
"@types/react-select-country-list": "^2.2.3",
"@types/react-test-renderer": "^19.0.0",
"babel-plugin-module-resolver": "^5.0.2",
"babel-plugin-transform-remove-console": "^6.9.4",
"eslint": "^8.19.0",
"jest": "^29.6.3",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "2.8.8",
"react-native-svg-transformer": "^1.5.0",
"react-test-renderer": "19.0.0",
"typescript": "5.0.4"
},
"engines": {
"node": ">=18"
}
}