-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.75 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.75 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
{
"name": "ymf-dev",
"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",
"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",
"build:ios:dev": "NODE_ENV=dev eas build --profile development:device --platform ios --local",
"build:ios:prod": "NODE_ENV=prod eas build --profile production --platform ios --local",
"build:android:dev": "NODE_ENV=dev eas build --profile development:device --platform android --local",
"build:android:prod": "NODE_ENV=prod eas build --profile production --platform android --local",
"start": "npx expo start",
"android:dev": "NODE_ENV=dev npx expo run:android",
"android:prod": "NODE_ENV=prod npx expo run:android",
"ios:dev": "NODE_ENV=dev npx expo run:ios",
"ios:prod": "NODE_ENV=prod npx expo run:ios",
"prebuild:clean": "NODE_ENV=dev npx expo prebuild --clean",
"android": "expo run:android",
"ios": "expo run:ios"
},
"dependencies": {
"@expo-google-fonts/space-grotesk": "^0.2.2",
"@expo/metro-runtime": "~3.2.1",
"@react-native-picker/picker": "^2.10.2",
"@react-navigation/bottom-tabs": "^6.6.1",
"@react-navigation/native": "^6.0.2",
"@react-navigation/native-stack": "^6.0.2",
"@reduxjs/toolkit": "^2.3.0",
"@shopify/flash-list": "^1.6.4",
"apisauce": "3.0.1",
"date-fns": "^4.1.0",
"expo": "~51.0.8",
"expo-build-properties": "~0.12.1",
"expo-dev-client": "~4.0.14",
"expo-font": "~12.0.5",
"expo-image-picker": "~15.0.7",
"expo-linking": "~6.3.1",
"expo-localization": "~15.0.3",
"expo-splash-screen": "~0.27.4",
"expo-status-bar": "~1.12.1",
"expo-system-ui": "~3.0.7",
"formik": "^2.4.6",
"i18next": "^23.14.0",
"intl-pluralrules": "^2.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-i18next": "^15.0.1",
"react-native": "0.74.5",
"react-native-fast-image": "^8.6.3",
"react-native-gesture-handler": "~2.16.1",
"react-native-keyboard-controller": "^1.12.7",
"react-native-mmkv": "2.12.2",
"react-native-modal": "^13.0.1",
"react-native-paper": "^5.12.5",
"react-native-reanimated": "~3.15.0",
"react-native-safe-area-context": "4.10.5",
"react-native-screens": "3.31.1",
"react-native-web": "~0.19.6",
"react-native-webview": "13.8.6",
"react-redux": "^9.1.2",
"redux-persist": "^6.0.0",
"yup": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@testing-library/react-native": "^12.8.1",
"@types/jest": "^29.5.14",
"@types/react": "~18.2.14",
"babel-jest": "^29.2.1",
"eslint": "^8.57.0",
"eslint-config-expo": "^7.1.2",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-react-native": "^4.1.0",
"eslint-plugin-reactotron": "^0.1.2",
"jest": "^29.7.0",
"jest-expo": "^51.0.4",
"patch-package": "^8.0.0",
"postinstall-prepare": "1.0.1",
"prettier": "^3.3.3",
"reactotron-core-client": "2.9.4",
"reactotron-react-js": "^3.3.11",
"reactotron-react-native": "^5.0.5",
"reactotron-react-native-mmkv": "^0.2.7",
"reactotron-redux": "^3.1.10",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "~5.3.3"
},
"engines": {
"node": "^18.18.0 || >=20.0.0"
}
}