-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
117 lines (117 loc) · 3.8 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
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": "binaryclock",
"version": "1.1.4",
"private": true,
"scripts": {
"env": "dotenv -e ./fastlane/.env",
"android": "yarn env react-native run-android",
"android:release": "yarn env react-native run-android --mode=release",
"ios": "yarn env react-native run-ios",
"ios:release": "yarn env react-native run-ios --mode Release",
"bundle": "yarn env yarn bundle:ios && yarn bundle:android",
"bundle:ios": "yarn env react-native rnx-bundle --platform ios",
"bundle:android": "yarn env react-native rnx-bundle --platform android",
"apps": "yarn install && yarn pods && yarn ios && yarn android",
"deploy:internal": "fastlane ios beta && fastlane android internal",
"deploy:production": "fastlane ios production && fastlane android production",
"start": "yarn env react-native rnx-start",
"test": "jest",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src App.tsx index.js",
"icons": "react-native-svg-app-icon",
"splash": "yarn react-native generate-bootsplash --background-color '#000' splash.svg",
"android-menu": "adb shell input keyevent 82",
"check-dependencies": "rnx-align-deps",
"fix-dependencies": "rnx-align-deps --write",
"deduplicate-dependencies": "yarn-deduplicate yarn.lock",
"pods": "cd ios && pod install && cd .."
},
"dependencies": {
"@react-native-community/slider": "^4.5.0",
"@react-navigation/native": "^6.0.8",
"@react-navigation/native-stack": "^6.9.18",
"lodash": "^4.17.21",
"react": "18.2.0",
"react-native": "^0.74.3",
"react-native-bootsplash": "^4.7.1",
"react-native-default-preference": "^1.4.4",
"react-native-keep-awake": "^4.0.0",
"react-native-safe-area-context": "^4.8.2",
"react-native-screens": "^3.31.0",
"react-native-toast-message": "^2.2.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.13",
"@react-native/babel-preset": "0.74.85",
"@react-native/eslint-config": "0.74.85",
"@react-native/metro-config": "0.74.85",
"@react-native/typescript-config": "0.74.85",
"@rnx-kit/align-deps": "^2.3.4",
"@rnx-kit/babel-preset-metro-react-native": "^1.1.4",
"@rnx-kit/cli": "^0.16.8",
"@rnx-kit/metro-config": "^1.3.6",
"@rnx-kit/metro-resolver-symlinks": "^0.1.28",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.7",
"@types/react": "^18.2.6",
"@types/react-native": "^0.67.3",
"@types/react-native-keep-awake": "^2.0.3",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"babel-jest": "^29.6.3",
"dotenv-cli": "^7.2.1",
"eslint": "^8.19.0",
"eslint-plugin-jest": "^28.6.0",
"jest": "^29.2.1",
"prettier": "^2.8.8",
"react-native-svg-app-icon": "^0.6.1",
"react-test-renderer": "18.2.0",
"typescript": "5.0.4",
"yarn-deduplicate": "^6.0.1"
},
"resolutions": {
"@types/react": "^17"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"rnx-kit": {
"kitType": "app",
"bundle": {
"treeShake": true,
"plugins": [
"@rnx-kit/metro-plugin-cyclic-dependencies-detector",
[
"@rnx-kit/metro-plugin-duplicates-checker",
{
"ignoredModules": [
"react-is",
"@react-native/normalize-color"
]
}
],
"@rnx-kit/metro-plugin-typescript"
]
},
"alignDeps": {
"requirements": [
],
"capabilities": [
"babel-preset-react-native",
"core",
"core-android",
"core-ios",
"jest",
"navigation/native",
"react",
"react-test-renderer",
"safe-area",
"screens"
]
}
}
}