-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 3.73 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 3.73 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
{
"name": "dive-safe",
"main": "./index.js",
"version": "1.1.0-beta.1",
"scripts": {
"start": "yarn generate-readme && yarn storybook:generate && expo start --dev-client",
"storybook:generate": "yarn storybook-generate",
"storybook-generate": "node ./scripts/generate-story-entries.js",
"storybook": "storybook dev -p 7007",
"build-storybook": "storybook build",
"run:android": "expo run:android",
"run:ios": "expo run:ios",
"app:uninstall": "adb uninstall host.exp.exponent",
"app:clear-tasks": "adb shell pm clear com.virtualize.divesafe",
"app:clear-tasks-expo": "adb shell pm clear host.exp.exponent",
"reset-project": "node ./scripts/reset-project.js",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"lint": "biome check app components",
"lint:fix": "biome check --write app components",
"format": "biome format app components",
"build:android:apk": "cd android && ./gradlew assembleRelease -x lint",
"build:android:aab": "cd android && ./gradlew bundleRelease -x lint",
"build:ios:prebuild-and-ipa": "bash -lc \"[ -d ios ] || npx expo prebuild --platform ios && xcodebuild -workspace ios/YourApp.xcworkspace -scheme YourApp -configuration Release -archivePath ios/build/YourApp.xcarchive archive && xcodebuild -exportArchive -archivePath ios/build/YourApp.xcarchive -exportOptionsPlist ios/exportOptions.plist -exportPath ios/build/YourApp.ipa\"",
"sideload:android": "adb install -r android/app/build/outputs/apk/release/app-release.apk",
"sideload:ios": "echo 'Requires macOS + valid signing. Use Xcode / Apple Configurator / TestFlight to install ios/build/YourApp.ipa'",
"generate-readme": "node scripts/generate-readme-ts.js",
"github:upload-apk": "node ./scripts/upload-apk.js"
},
"dependencies": {
"@expo/vector-icons": "^15.0.2",
"@gorhom/bottom-sheet": "^5.2.6",
"@react-native-community/datetimepicker": "^8.4.5",
"@react-native-community/slider": "^5.0.1",
"@react-navigation/bottom-tabs": "^7.4.0",
"@react-navigation/elements": "^2.6.3",
"@react-navigation/native": "^7.1.8",
"@storybook/addon-ondevice-actions": "^9.1.2",
"@storybook/addon-ondevice-controls": "^9.1.2",
"@storybook/react-native": "^9.1.2",
"expo": "~54.0.9",
"expo-build-properties": "~0.12.5",
"expo-constants": "~18.0.9",
"expo-dev-client": "~6.0.12",
"expo-font": "~14.0.8",
"expo-haptics": "~15.0.7",
"expo-image": "~3.0.8",
"expo-linking": "~8.0.8",
"expo-router": "~6.0.7",
"expo-splash-screen": "~31.0.10",
"expo-status-bar": "~3.0.8",
"expo-symbols": "~1.0.7",
"expo-system-ui": "~6.0.7",
"expo-web-browser": "~15.0.7",
"luxon": "^3.7.2",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-native": "0.81.4",
"react-native-blob-util": "^0.22.2",
"react-native-gesture-handler": "~2.28.0",
"react-native-markdown-display": "^7.0.2",
"react-native-mmkv": "^3.3.3",
"react-native-paper": "^5.14.5",
"react-native-pdf": "^6.7.7",
"react-native-reanimated": "~4.1.1",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.16.0",
"react-native-svg": "^15.13.0",
"react-native-web": "~0.21.0",
"react-native-worklets": "0.5.1",
"zustand": "^5.0.8"
},
"devDependencies": {
"@biomejs/biome": "2.2.4",
"@storybook/react": "^9.1.5",
"@types/luxon": "^3",
"@types/react": "~19.1.0",
"eslint": "^9.25.0",
"eslint-config-expo": "~10.0.0",
"storybook": "^9.1.5",
"typescript": "~5.9.2"
},
"private": true,
"packageManager": "yarn@4.10.2+sha512.0b0e54ad5381f0a35184957bd3ea44e37f5a4fb1960b903b0fb9a3c7c2c009190455c41ef2a1977b1dbd3b72c5f152da696e9c52e2bc78a011b6adea8ee73ba3"
}