-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 4.62 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 4.62 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
{
"name": "myapp",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android --mode=devDebug",
"android:release": "react-native run-android --mode=release",
"ios": "react-native run-ios",
"start": "react-native start --reset-cache",
"test": "jest",
"lint": "eslint . --ext .jsx,.ts,.tsx",
"lint-staged": "lint-staged --config lint-staged.js",
"pre-commit": "npm run lint",
"lint:fix": "npm run lint -- --fix",
"link-fonts": "npx react-native-asset",
"clean-ios": "rm -rf \"~/Library/Developer/Xcode/DerivedData/*\" && cd ios && rm -rf ./Pods && rm Podfile.lock",
"pods": "cd ios && pod install && cd ../",
"clean-android": "cd android && ./gradlew clean && cd ../",
"codepush-android-stage": "appcenter codepush release-react -a owner/appName -d Staging -k codePushPrivateKey.pem --sourcemap-output --output-dir ./build",
"codepush-android-prod": "appcenter codepush release-react -a owner/Appname -d Production -k codePushPrivateKey.pem --sourcemap-output --output-dir ./build",
"codepush-ios-stage": "appcenter codepush release-react -a owner/appName -d Staging -k codePushPrivateKey.pem --sourcemap-output --output-dir ./build",
"codepush-ios-prod": "appcenter codepush release-react -a owner/Appname -d Production -k codePushPrivateKey.pem --sourcemap-output --output-dir ./build",
"build": "cd android && ./gradlew assembleRelease && cd ../",
"build-staging": "cd android && ./gradlew assembleReleaseStaging && cd ../ ",
"prettier": "prettier --write \"**/*.{js,ts,.tsx,json,md,html}\"",
"prettier:check": "prettier --check \"**/*.{js,ts,.tsx,json,md,html}\""
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.23.1",
"@react-navigation/native": "^6.1.17",
"@react-navigation/native-stack": "^6.9.26",
"@reduxjs/toolkit": "^2.2.5",
"@sentry/react-native": "^5.23.0",
"@types/react": "18.3.3",
"appcenter": "^5.0.1",
"appcenter-analytics": "^5.0.1",
"appcenter-crashes": "^5.0.1",
"axios": "^1.7.2",
"i18next": "^23.11.5",
"lottie-react-native": "^6.7.2",
"promise.allsettled": "^1.0.7",
"react": "18.3.1",
"react-error-boundary": "^4.0.13",
"react-i18next": "^14.1.2",
"react-native": "0.74.1",
"react-native-bootsplash": "^5.5.3",
"react-native-code-push": "^8.2.2",
"react-native-config": "^1.5.1",
"react-native-exception-handler": "^2.10.10",
"react-native-fast-image": "^8.6.3",
"react-native-flash-message": "^0.4.2",
"react-native-image-progress": "^1.2.0",
"react-native-safe-area-context": "^4.10.1",
"react-native-screens": "^3.31.1",
"react-native-simple-toast": "^3.3.1",
"react-native-svg": "^15.3.0",
"react-native-vector-icons": "^10.1.0",
"react-redux": "^9.1.2",
"redux-persist": "^6.0.0",
"rn-secure-storage": "^3.0.1",
"yup": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.24.6",
"@babel/runtime": "^7.24.6",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@react-native-community/eslint-plugin": "^1.3.0",
"@react-native/babel-preset": "0.74.83",
"@react-native/eslint-config": "0.74.83",
"@react-native/metro-config": "0.74.83",
"@react-native/typescript-config": "^0.74.83",
"@sentry/typescript": "^5.20.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"@types/promise.allsettled": "^1.0.6",
"@types/react-native": "^0.73.0",
"@types/react-native-base64": "^0.2.2",
"@types/react-native-vector-icons": "^6.4.18",
"@types/react-test-renderer": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"babel-jest": "^29.7.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"eslint": "^9.3.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-native": "^4.1.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.5",
"metro-config": "^0.80.9",
"prettier": "^3.2.5",
"react-test-renderer": "18.3.1",
"typescript": "^5.4.5"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}