forked from cleanappio/cleanapp-mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 4.28 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 4.28 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
{
"name": "cleanapp",
"version": "3.2.17",
"private": true,
"scripts": {
"android": "react-native run-android --interactive",
"ios": "react-native run-ios --interactive",
"start": "react-native start --reset-cache",
"test": "jest",
"lint": "eslint .",
"clean-modules": "rm -rf node_modules yarn.lock",
"clean-android": "rm -rf android/.gradle android/.kotlin android/build android/app/build android/app/src/main/assets/index.android.bundle android/app/src/main/res/drawable-* android/app/src/main/res/raw",
"clean-ios": "rm -rf ios/Pods ios/Podfile.lock ios/assets/node_modules ios/main.jsbundle",
"android:bundle": "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/",
"ios:bundle": "NODE_OPTIONS=--openssl-legacy-provider react-native bundle --entry-file='index.js' --bundle-output='./ios/main.jsbundle' --dev=false --platform='ios' --assets-dest ./ios",
"reverse": "adb reverse tcp:8081 tcp:8081",
"sync-version": "node scripts/sync-version.js",
"version:patch": "npm version patch && npm run sync-version",
"version:minor": "npm version minor && npm run sync-version",
"version:major": "npm version major && npm run sync-version"
},
"dependencies": {
"@babel/plugin-transform-export-namespace-from": "^7.25.9",
"@babel/plugin-transform-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-transform-optional-chaining": "^7.21.0",
"@babel/plugin-transform-private-methods": "^7.24.1",
"@babel/preset-typescript": "^7.23.3",
"@bam.tech/react-native-image-resizer": "^3.0.11",
"@ethersproject/shims": "^5.8.0",
"@react-native-async-storage/async-storage": "^2.1.2",
"@react-native-clipboard/clipboard": "^1.16.1",
"@react-native-community/blur": "^4.4.0",
"@react-navigation/bottom-tabs": "^7.2.0",
"@react-navigation/native": "^7.0.14",
"@react-navigation/stack": "^7.4.7",
"axios": "^1.8.1",
"babel-loader": "^10.0.0",
"ethers": "^6.13.5",
"i18next": "24.2.2",
"react": "19.0.0",
"react-i18next": "^15.4.1",
"react-native": "0.78.2",
"react-native-config": "^1.5.5",
"react-native-device-info": "^14.0.4",
"react-native-dotenv": "^3.4.11",
"react-native-elements": "^3.4.3",
"react-native-fs": "^2.20.0",
"react-native-geolocation-service": "^5.3.1",
"react-native-gesture-handler": "^2.14.1",
"react-native-get-random-values": "^1.11.0",
"react-native-htmlview": "^0.17.0",
"react-native-image-picker": "^8.2.1",
"react-native-linear-gradient": "^2.8.3",
"react-native-permissions": "^5.2.5",
"react-native-popup-menu": "^0.16.1",
"react-native-public-ip": "^1.0.2",
"react-native-qrcode-svg": "^6.3.15",
"react-native-radial-gradient": "^1.2.1",
"react-native-reanimated": "^3.18.0",
"react-native-safe-area-context": "^5.5.0",
"react-native-screens": "^4.11.1",
"react-native-share": "^12.0.9",
"react-native-splash-screen": "^3.3.0",
"react-native-svg": "^15.11.2",
"react-native-svg-transformer": "^1.5.0",
"react-native-tcp-socket": "^6.2.0",
"react-native-view-shot": "^4.0.3",
"react-native-vision-camera": "^4.6.4",
"react-native-webview": "^13.15.0",
"react-redux": "^9.2.0",
"react-zlib-js": "^1.0.5",
"redux": "^5.0.1",
"redux-persist": "^6.0.0",
"redux-thunk": "^3.1.0",
"rn-sliding-up-panel": "^2.4.6",
"store": "^2.0.12",
"toastify-react-native": "^7.2.3",
"url": "^0.11.3"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/runtime": "^7.25.0",
"@react-native-community/cli": "16.0.2",
"@react-native-community/cli-platform-android": "16.0.2",
"@react-native-community/cli-platform-ios": "16.0.2",
"@react-native/babel-preset": "0.78.0",
"@react-native/eslint-config": "0.78.0",
"@react-native/metro-config": "0.78.0",
"@react-native/typescript-config": "0.78.0",
"@types/jest": "^29.5.13",
"@types/react": "^19.0.0",
"@types/react-test-renderer": "^19.0.0",
"eslint": "^9.21.0",
"jest": "^29.6.3",
"prettier": "3.5.3",
"react-test-renderer": "19.0.0",
"typescript": "^5.8.2"
},
"engines": {
"node": ">=18"
}
}