-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
255 lines (255 loc) · 11.3 KB
/
package.json
File metadata and controls
255 lines (255 loc) · 11.3 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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
{
"name": "langquest",
"main": "expo-router/entry",
"version": "2.2.2",
"scripts": {
"start": "expo start --dev-client",
"start:offline:android": "npm run start -- --localhost --android",
"start:prod": "npm run start -- --no-dev --minify",
"export:android": "EXPO_ATLAS=true npx expo export --platform android",
"export:ios": "EXPO_ATLAS=true npx expo export --platform ios",
"export:web": "EXPO_ATLAS=true npx expo export --platform web",
"export:all": "EXPO_ATLAS=true npx expo export",
"export:dev:android": "EXPO_ATLAS=true npm run export:android -- --dev",
"export:dev:ios": "EXPO_ATLAS=true npm run export:ios -- --dev",
"export:dev:web": "EXPO_ATLAS=true npm run export:web -- --dev",
"export:dev:all": "EXPO_ATLAS=true npm run export:all -- --dev",
"export:analyze": "npx expo-atlas .expo/atlas.jsonl",
"posthog:upload-sourcemaps": "posthog-cli hermes upload --directory dist",
"update": "eas update && npm run posthog:upload-sourcemaps",
"update:preview": "eas update --branch preview && npm run posthog:upload-sourcemaps",
"update:production": "eas update --branch production && npm run posthog:upload-sourcemaps",
"update:development": "eas update --branch development && npm run posthog:upload-sourcemaps",
"generate-env": "npx tsx ./scripts/generate-env.ts",
"reset-project": "node ./scripts/reset-project.js",
"clean-install": "git clean -xdf node_modules package-lock.json && npm i",
"clean-rebuild:android": "npm run clean-install && npx expo prebuild --platform android --clean",
"clean-rebuild:ios": "npm run clean-install && npx expo prebuild --platform ios --clean",
"clean-rebuild": "npm run clean-install && npx expo prebuild --clean",
"android": "expo run:android --variant debugOptimized --device",
"android:memory": "NODE_OPTIONS=--max-old-space-size=8192 expo run:android --variant debugOptimized --device",
"android:multi": "npm run start",
"android:device": "expo run:android --device --no-bundler",
"android:preview": "npx cross-env EXPO_PUBLIC_APP_VARIANT=preview expo run:android --device --variant release",
"android:release": "npx cross-env EXPO_PUBLIC_APP_VARIANT=production expo run:android --device --variant release",
"ios": "expo run:ios --device",
"ios:preview": "npx cross-env EXPO_PUBLIC_APP_VARIANT=preview expo run:ios --device --variant release",
"ios:release": "npx cross-env EXPO_PUBLIC_APP_VARIANT=production expo run:ios --device --variant release",
"web": "npm run powersync:copy-assets && expo start --web",
"db:view": "npx drizzle-lab@latest visualizer --project-id LangQuest",
"test": "jest --watchAll",
"lint": "eslint",
"lint:fix": "eslint --fix",
"lint:inspect": "npx @eslint/config-inspector",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"typecheck": "tsc --noEmit",
"powersync:start": "docker compose -f supabase/docker-compose.yml --env-file .env.local up -w",
"powersync:stop": "docker compose -f supabase/docker-compose.yml --env-file .env.local down",
"resend": "npx emulate@latest --service resend --port 4000",
"env:start": "concurrently -n supabase -c green \"npm:sb start\" && concurrently -k -n edge-fn,powersync,resend -c yellow,cyan,magenta \"npm:sb:serve-functions\" \"npm:powersync:start\" \"npm:resend\"",
"env:stop": "npm run powersync:stop && npm run sb stop && rm -f supabase/functions/.env",
"env": "npm run generate-env && npm run env:start && npm run env:stop",
"env:clean": "npm run sb:clean && npm run powersync:clean",
"powersync:copy-assets": "npx powersync-web copy-assets",
"powersync:diagnostics": "docker run --pull always -p 8082:80 --platform linux/amd64 journeyapps/powersync-diagnostics-app",
"powersync:clean": "npm run powersync:stop && docker volume rm -f powersync_mongo_storage",
"sb:clean": "git clean -xdf supabase/**/.DS_Store && npm run sb db reset && npm run sb stop",
"decrypt-env": "dotenvx run -f supabase/.env -f supabase/.env.preview -f supabase/.env.local --overload",
"sb": "npm run decrypt-env -- npx supabase@beta",
"decrypt-env:file": "dotenvx get -f supabase/.env -f supabase/.env.preview -f supabase/.env.local --overload 2>/dev/null | node -e \"const j=JSON.parse(require('fs').readFileSync('/dev/stdin','utf8'));Object.entries(j).forEach(([k,v])=>console.log(k+'=\\\"'+v+'\\\"'))\" > supabase/functions/.env",
"sb:serve-functions": "npm run decrypt-env:file && npm run sb functions serve -- --env-file supabase/functions/.env",
"sb:functions:deploy:send-email:dev": "npm run sb functions deploy send-email -- --no-verify-jwt --project-ref yjgdgsycxmlvaiuynlbv",
"sb:functions:deploy:send-email:prod": "npm run sb functions deploy send-email -- --no-verify-jwt --project-ref unsxkmlcyxgtgmtzfonb",
"package-lock:fix": "npm install --package-lock-only",
"shadcn": "shadcn",
"knip:check": "knip",
"postinstall": "patch-package",
"prepare": "git config core.hooksPath .githooks",
"adb:tunnel": "adb reverse tcp:8081 tcp:8081",
"android:eas:build:preview": "eas build --platform android --profile preview"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@azure/core-asynciterator-polyfill": "^1.0.2",
"@blazejkustra/react-native-alert": "^1.0.0",
"@expo-google-fonts/noto-sans": "^0.4.2",
"@gorhom/bottom-sheet": "^5.2.8",
"@hookform/resolvers": "^5.0.1",
"@journeyapps/wa-sqlite": "^1.4.1",
"@legendapp/list": "^2.0.12",
"@op-engineering/op-sqlite": "^15.2.5",
"@openspacelabs/react-native-zoomable-view": "^2.4.2",
"@powersync/attachments": "^2.4.3",
"@powersync/drizzle-driver": "^0.7.3",
"@powersync/op-sqlite": "^0.9.1",
"@powersync/react-native": "^1.30.2",
"@powersync/tanstack-react-query": "^0.2.0",
"@powersync/web": "^1.34.0",
"@react-native-async-storage/async-storage": "2.2.0",
"@react-native-community/netinfo": "11.5.2",
"@react-native-community/slider": "5.1.2",
"@react-native-documents/picker": "^12.0.1",
"@react-navigation/bottom-tabs": "^7.3.10",
"@react-navigation/native": "^7.1.6",
"@react-navigation/native-stack": "^7.3.10",
"@rn-primitives/checkbox": "^1.2.0",
"@rn-primitives/collapsible": "^1.2.0",
"@rn-primitives/label": "^1.1.0",
"@rn-primitives/portal": "^1.3.0",
"@rn-primitives/progress": "^1.2.0",
"@rn-primitives/select": "^1.1.0",
"@rn-primitives/slider": "1.2.0",
"@rn-primitives/slot": "^1.2.0",
"@rn-primitives/switch": "^1.2.0",
"@rn-primitives/tabs": "^1.2.0",
"@rn-primitives/toggle": "^1.1.0",
"@rn-primitives/toggle-group": "^1.1.0",
"@rn-primitives/tooltip": "^1.2.0",
"@rn-primitives/types": "^1.1.0",
"@supabase/supabase-js": "^2.53.0",
"@tanstack/query-async-storage-persister": "^5.94.5",
"@tanstack/react-query": "^5.84.0",
"@tanstack/react-query-persist-client": "^5.84.0",
"babel-plugin-react-compiler": "^1.0.0",
"base64-arraybuffer": "^1.0.2",
"bidirectional-map": "^1.1.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"eslint-config-expo": "~55.0.0",
"eslint-plugin-drizzle": "^0.2.3",
"expo": "^55.0.0",
"expo-application": "~55.0.8",
"expo-asset": "~55.0.4",
"expo-audio": "~55.0.8",
"expo-build-properties": "~55.0.9",
"expo-clipboard": "~55.0.8",
"expo-constants": "~55.0.4",
"expo-dev-client": "~55.0.11",
"expo-device": "~55.0.9",
"expo-drizzle-studio-plugin": "^0.2.1",
"expo-file-system": "~55.0.5",
"expo-font": "~55.0.3",
"expo-haptics": "~55.0.8",
"expo-image": "~55.0.6",
"expo-keep-awake": "^55.0.4",
"expo-linear-gradient": "~55.0.8",
"expo-linking": "~55.0.7",
"expo-localization": "~55.0.8",
"expo-manifests": "~55.0.9",
"expo-router": "~55.0.4",
"expo-sharing": "~55.0.11",
"expo-splash-screen": "~55.0.10",
"expo-sqlite": "~55.0.10",
"expo-status-bar": "~55.0.4",
"expo-system-ui": "~55.0.9",
"expo-updates": "~55.0.12",
"js-logger": "^1.6.1",
"lucide-react-native": "^0.563.0",
"moti": "^0.30.0",
"nativewind": "^4.2.1",
"posthog-js": "^1.376.6",
"posthog-react-native": "^4.46.4",
"posthog-react-native-session-replay": "^1.6.0",
"react": "19.2.0",
"react-compiler-runtime": "^1.0.0",
"react-dom": "19.2.0",
"react-hook-form": "^7.71.1",
"react-native": "0.83.2",
"react-native-audio-concat": "^0.9.0",
"react-native-element-dropdown": "2.12.4",
"react-native-gesture-handler": "~2.30.0",
"react-native-keyboard-controller": "1.20.7",
"react-native-onboarding": "^1.0.6",
"react-native-pager-view": "8.0.0",
"react-native-reanimated": "4.2.1",
"react-native-reorderable-list": "^0.18.0",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.23.0",
"react-native-svg": "15.15.3",
"react-native-url-polyfill": "^3.0.0",
"react-native-uuid": "^2.0.3",
"react-native-web": "^0.21.0",
"react-native-worklets": "0.7.2",
"react-native-zip-archive": "^7.0.2",
"sonner-native": "^0.25.1",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"testflight-dev-deploy": "^0.0.8",
"vaul": "^1.1.2",
"zod": "^4.3.6",
"zustand": "^5.0.11"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/plugin-transform-async-generator-functions": "^7.26.8",
"@babel/plugin-transform-export-namespace-from": "^7.27.1",
"@dotenvx/dotenvx": "^1.59.1",
"@eslint/compat": "^1.2.4",
"@libsql/client": "^0.17.0",
"@modelcontextprotocol/sdk": "^1.0.4",
"@posthog/cli": "^0.7.16",
"@react-native-community/cli": "latest",
"@total-typescript/ts-reset": "^0.6.1",
"@types/bidirectional-map": "^1.0.4",
"@types/default-gateway": "^7.2.2",
"@types/jest": "29.5.14",
"@types/node": "^25.2.2",
"@types/react": "~19.2.2",
"@types/react-test-renderer": "^19.0.0",
"babel-plugin-inline-import": "^3.0.0",
"babel-preset-expo": "~55.0.0",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"default-gateway": "^7.2.2",
"drizzle-kit": "^0.31.9",
"drizzle-orm": "^0.45.1",
"eas-build-cache-provider": "^18.0.1",
"eslint": "^9.38.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-compiler": "^19.1.0-rc.2",
"eslint-plugin-react-hooks": "^7.0.1",
"expo-atlas": "^0.4.0",
"expo-mcp": "~0.2.1",
"jest": "~29.7.0",
"jest-expo": "~55.0.9",
"jiti": "^2.6.1",
"knip": "^5.83.1",
"metro-react-native-babel-transformer": "^0.77.0",
"patch-package": "^8.0.1",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"react-native-svg-transformer": "^1.5.1",
"react-test-renderer": "19.2.0",
"sharp-cli": "^5.2.0",
"supabase": "^2.48.3",
"tailwindcss": "^3.4.19",
"tsx": "^4.21.0",
"typescript": "~5.9.2",
"typescript-eslint": "^8.55.0"
},
"overrides": {
"ajv": "^6.12.6",
"@modelcontextprotocol/sdk": {
"ajv": "^8.17.1",
"ajv-formats": {
"ajv": "^8.17.1"
}
},
"schema-utils": "3.1.1",
"react": "19.2.0",
"react-dom": "19.2.0",
"@types/react": "~19.2.2",
"jest-snapshot-prettier": "npm:prettier@^3.8.1",
"minimatch": "^9.0.7",
"esbuild": "^0.25.0",
"sharp-cli": {
"glob": "^13.0.0"
},
"lightningcss": "1.31.1"
},
"private": true
}