This repository was archived by the owner on Jan 14, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.28 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 3.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
{
"name": "ladefuchs",
"version": "3.6.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"build": "expo prebuild",
"build:clean": "expo prebuild --clean",
"build:ios": "expo prebuild --clean --platform ios && npm run xcode",
"build:android": "rm -rf android && expo prebuild --clean --platform android && npm run androidstudio",
"androidstudio": "open /Applications/Android\\ Studio.app ",
"xcode": "open /Applications/Xcode.app",
"license": "node generateLicenses.js",
"lint": "expo lint",
"check-updates": "ncu",
"check-updates:interactive": "ncu -i",
"update-deps": "npx expo install --fix && ncu -u --reject 'expo,expo-*,@expo/*,react-native,react' && npm install",
"update-deps:minor": "npx expo install --fix && ncu -u --target minor --reject 'expo,expo-*,@expo/*,react-native,react' && npm install",
"update-deps:patch": "npx expo install --fix && ncu -u --target patch --reject 'expo,expo-*,@expo/*,react-native,react' && npm install",
"update-expo": "npx expo install --fix",
"outdated": "npm outdated"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^2.2.0",
"@react-native-picker/picker": "2.11.1",
"@react-navigation/native-stack": "^7.3.27",
"@react-navigation/stack": "^7.4.9",
"@shopify/flash-list": "2.0.2",
"@tanstack/react-query": "^5.90.2",
"@types/react": "~19.1.12",
"babel-plugin-react-compiler": "^19.0.0-beta-af1b7da-20250417",
"expo": "~54.0.25",
"expo-checkbox": "~5.0.7",
"expo-constants": "~18.0.10",
"expo-device": "~8.0.9",
"expo-haptics": "~15.0.7",
"expo-image": "~3.0.10",
"expo-localization": "~17.0.7",
"expo-sensors": "~15.0.7",
"expo-splash-screen": "~31.0.11",
"expo-status-bar": "~3.0.8",
"expo-store-review": "~9.0.8",
"expo-system-ui": "~6.0.8",
"i18n-js": "^4.5.1",
"lottie-react-native": "^7.3.4",
"react": "19.1.0",
"react-native": "0.81.5",
"react-native-edge-to-edge": "^1.7.0",
"react-native-elements": "^3.4.3",
"react-native-gesture-handler": "~2.28.0",
"react-native-onboarding-swiper": "^1.3.0",
"react-native-reanimated": "4.1.3",
"react-native-safe-area-context": "5.6.1",
"react-native-screens": "~4.16.0",
"react-native-size-matters": "^0.4.2",
"react-native-svg": "^15.12.1",
"react-native-svg-transformer": "^1.5.1",
"react-native-toast-message": "^2.3.3",
"react-native-wheely": "^0.6.0",
"react-native-worklets": "~0.5.0",
"zustand": "^5.0.8"
},
"devDependencies": {
"@babel/core": "^7.28.4",
"@expo/metro-config": "^54.0.6",
"babel-preset-expo": "~54.0.7",
"@types/hyphen": "^1.6.7",
"@types/react-native-onboarding-swiper": "^1.1.9",
"@typescript-eslint/eslint-plugin": "^8.46.0",
"eslint": "^9.37.0",
"eslint-config-expo": "~10.0.0",
"eslint-plugin-react-compiler": "^19.1.0-rc.2",
"expo-atlas": "^0.4.3",
"expo-build-properties": "~1.0.9",
"license-checker": "^25.0.1",
"prettier": "^3.6.2",
"react-native-dotenv": "^3.4.11",
"typescript": "~5.9.3"
},
"private": true,
"expo": {
"doctor": {
"reactNativeDirectoryCheck": {
"listUnknownPackages": false
}
}
}
}