-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.75 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
{
"name": "rnv-7-test-app",
"version": "0.0.1",
"private": true,
"main": "expo/AppEntry.js",
"scripts": {
"compile": "tsc --noEmit -p . --pretty",
"format": "eslint . --fix",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"patch": "patch-package",
"test": "jest",
"test:watch": "jest --watch",
"test:maestro": "maestro test .maestro/FavoritePodcast.yaml",
"adb": "adb reverse tcp:9090 tcp:9090 && adb reverse tcp:3000 tcp:3000 && adb reverse tcp:9001 tcp:9001 && adb reverse tcp:8081 tcp:8081",
"postinstall": "patch-package",
"bundle:visualize": "npx react-native-bundle-visualizer",
"bundle:visualize:dev": "npx react-native-bundle-visualizer --dev",
"build:ios:sim": "eas build --profile development --platform ios --local",
"build:ios:dev": "eas build --profile development:device --platform ios --local",
"build:ios:prod": "eas build --profile production --platform ios --local",
"build:android:sim": "eas build --profile development --platform android --local",
"build:android:dev": "eas build --profile development:device --platform android --local",
"build:android:prod": "eas build --profile production --platform android --local",
"start": "npx expo start",
"android": "npx expo run:android",
"ios": "npx expo run:ios",
"web": "npx expo start --web",
"bundle:web": "npx expo export --platform web",
"serve:web": "npx server dist",
"prebuild:clean": "npx expo prebuild --clean"
},
"dependencies": {
"@expo/metro-runtime": "~4.0.0",
"@react-native-async-storage/async-storage": "^2.1.0",
"@react-navigation/bottom-tabs": "^7.2.0",
"@react-navigation/native": "^7.0.14",
"@react-navigation/native-stack": "^7.2.0",
"date-fns": "^4.1.0",
"expo": "~52.0.24",
"expo-application": "~6.0.1",
"expo-build-properties": "~0.13.1",
"expo-dev-client": "~5.0.8",
"expo-device": "~7.0.2",
"expo-font": "~13.0.2",
"expo-linking": "~7.0.4",
"expo-localization": "~16.0.0",
"expo-notifications": "~0.29.12",
"expo-splash-screen": "~0.29.19",
"expo-status-bar": "~2.0.0",
"expo-system-ui": "~4.0.6",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-i18next": "^15.0.1",
"react-native": "0.76.7",
"react-native-drawer-layout": "4.0.0-alpha.9",
"react-native-gesture-handler": "~2.20.2",
"react-native-get-random-values": "^1.11.0",
"react-native-mmkv": "^2.12.2",
"react-native-reanimated": "~3.16.1",
"react-native-safe-area-context": "^5.1.0",
"react-native-screens": "~4.9.1",
"react-native-url-polyfill": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@testing-library/react-native": "^12.5.2",
"@types/jest": "^29.2.1",
"@types/react": "~18.3.12",
"babel-jest": "^29.2.1",
"constructs": "^10.0.0",
"esbuild": "^0.24.2",
"eslint": "^8.57.0",
"eslint-config-expo": "~8.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "6.6.0",
"eslint-plugin-react-native": "^4.1.0",
"eslint-plugin-reactotron": "^0.1.2",
"jest": "^29.2.1",
"jest-expo": "~52.0.2",
"patch-package": "^8.0.0",
"postinstall-prepare": "1.0.1",
"prettier": "^3.3.3",
"react-test-renderer": "18.2.0",
"reactotron-core-client": "2.9.4",
"reactotron-mst": "^3.1.7",
"reactotron-react-js": "^3.3.11",
"reactotron-react-native": "^5.0.5",
"reactotron-react-native-mmkv": "^0.2.6",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.0.0"
},
"engines": {
"node": "^18.18.0 || >=20.0.0"
}
}