This repository was archived by the owner on Aug 31, 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
136 lines (136 loc) · 5.92 KB
/
Copy pathpackage.json
File metadata and controls
136 lines (136 loc) · 5.92 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "listingos",
"version": "1.0.1",
"description": "Camera-first AI listing machine for eBay sellers.",
"license": "MIT",
"main": "expo-router/entry",
"dependencies": {
"@expo/metro-runtime": "~57.0.10",
"@expo/ui": "~57.0.11",
"@react-native-async-storage/async-storage": "2.2.0",
"@shopify/react-native-skia": "2.6.2",
"@tanstack/react-query": "^5.101.4",
"expo": "~57.0.13",
"expo-asset": "~57.0.11",
"expo-blur": "~57.0.2",
"expo-camera": "~57.0.3",
"expo-clipboard": "~57.0.1",
"expo-constants": "~57.0.11",
"expo-font": "~57.0.1",
"expo-haptics": "~57.0.1",
"expo-image": "~57.0.3",
"expo-image-manipulator": "~57.0.10",
"expo-image-picker": "~57.0.10",
"expo-linear-gradient": "~57.0.1",
"expo-linking": "~57.0.6",
"expo-media-library": "~57.0.4",
"expo-notifications": "~57.0.11",
"expo-router": "~57.0.13",
"expo-secure-store": "~57.0.1",
"expo-status-bar": "~57.0.1",
"expo-symbols": "~57.0.2",
"expo-updates": "~57.0.14",
"hono": "^4.13.2",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-native": "0.86.2",
"react-native-gesture-handler": "~2.32.0",
"react-native-purchases": "^10.7.1",
"react-native-reanimated": "4.5.1",
"react-native-safe-area-context": "~5.7.0",
"react-native-view-shot": "5.1.0",
"react-native-web": "^0.21.2",
"react-native-worklets": "0.10.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@cloudflare/workers-types": "^5.20260814.1",
"@types/react": "~19.2.18",
"eslint": "^9.39.5",
"eslint-config-expo": "~57.0.1",
"node-addon-api": "^8.9.2",
"node-gyp": "^12.4.0",
"patch-package": "^8.0.1",
"sharp": "^0.35.3",
"typescript": "~6.0.3",
"wrangler": "^4.123.0"
},
"scripts": {
"start": "expo start --dev-client",
"dev": "expo start --dev-client --clear",
"dev:tunnel": "expo start --dev-client --clear --host tunnel",
"android": "expo run:android",
"audit:high": "bun scripts/check-production-audit.mjs",
"ios": "expo run:ios",
"device:ios": "expo run:ios --device",
"device:android": "expo run:android --device",
"device:ios:release": "node scripts/run-native-release.mjs ios",
"device:android:release": "node scripts/run-native-release.mjs android",
"debug:ios": "bash scripts/debug-ios-launch.sh",
"ios:crash": "bash scripts/ios-crash-capture.sh",
"rc:finish": "bash scripts/finish-revenuecat.sh",
"web": "expo start --web",
"web:export": "expo export --platform web",
"web:serve": "expo serve",
"web:verify": "bun run check && bun run worker:check && bun run web:export",
"web:export:proof": "bun run web:export",
"web:deploy:preview": "bun run web:verify && eas deploy --export-dir dist",
"web:deploy:production": "bun run web:verify && eas deploy --prod --export-dir dist",
"web:deploy:proof": "bun run web:deploy:production",
"doctor": "bun x expo-doctor",
"eas-build-post-install": "node scripts/prepare-eas-firebase.js",
"generate:icons": "node scripts/generate-icons.js",
"postinstall": "patch-package",
"lint": "eslint . --max-warnings=0",
"check:safety": "node scripts/check-safety-invariants.mjs",
"check:docs": "node scripts/check-doc-links.mjs",
"typecheck:app": "tsc --noEmit",
"typecheck:worker": "tsc -p worker/tsconfig.json --noEmit",
"typecheck": "bun run typecheck:app && bun run typecheck:worker",
"check": "bun run lint && bun run typecheck && bun run check:safety && bun run check:docs && bun run doctor",
"verify:submission": "bun run check && bun run worker:check && bun run export:android",
"export:android": "expo export --platform android",
"export:updates": "expo export --platform ios --output-dir dist-update-ios && expo export --platform android --output-dir dist-update-android",
"build:android:release": "cd android && ./gradlew assembleRelease -PreactNativeArchitectures=arm64-v8a",
"install:android:release": "adb install -r android/app/build/outputs/apk/release/app-release.apk",
"open:android": "adb shell monkey -p com.jongan69.listingos -c android.intent.category.LAUNCHER 1",
"worker:dev": "wrangler dev --local --port 8787",
"test:worker-security": "bun test worker/security-utils.test.mjs",
"worker:check": "bun run typecheck:worker && wrangler deploy --dry-run",
"worker:deploy": "bun run typecheck:worker && wrangler deploy",
"worker:tail": "wrangler tail",
"eas:credentials:android": "eas credentials -p android",
"eas:credentials:ios": "eas credentials -p ios",
"eas:build:preview": "eas build --profile preview",
"eas:build:android": "eas build -p android --profile production",
"eas:build:ios": "eas build -p ios --profile production",
"testflight": "eas build -p ios --profile production --auto-submit",
"testflight:demo": "eas build -p ios --profile testflight-demo --auto-submit",
"eas:build:production": "eas build --profile production",
"eas:submit:android": "eas submit -p android --profile production",
"eas:submit:ios": "eas submit -p ios --profile production",
"eas:submit:production": "eas submit --profile production",
"eas:update:preview": "LISTINGOS_APS_ENVIRONMENT=development bun x eas-cli@latest update --channel preview --environment preview",
"eas:update:production": "LISTINGOS_APS_ENVIRONMENT=production bun x eas-cli@latest update --channel production --environment production",
"eas:update:list": "bun x eas-cli@latest update:list --all",
"db:migrate:local": "wrangler d1 migrations apply seller-ai-db --local",
"db:migrate:remote": "wrangler d1 migrations apply seller-ai-db --remote"
},
"overrides": {
"brace-expansion": "1.1.18",
"js-yaml": "4.3.1",
"nanoid": "3.3.18",
"uuid": "11.1.1"
},
"expo": {
"autolinking": {
"android": {
"buildFromSource": [
"expo-camera"
]
}
}
},
"private": true,
"packageManager": "bun@1.3.14"
}