-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
299 lines (299 loc) · 12 KB
/
package.json
File metadata and controls
299 lines (299 loc) · 12 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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
{
"name": "foam",
"version": "0.1.0",
"private": true,
"engineStrict": true,
"main": "index.ts",
"engines": {
"node": ">=20",
"bun": ">=1.2.5"
},
"scripts": {
"start": "APP_VARIANT=development expo start --dev-client",
"start:atlas": "EXPO_UNSTABLE_ATLAS=true APP_VARIANT=development expo start --dev-client",
"start:atlas:production": "EXPO_UNSTABLE_ATLAS=true APP_VARIANT=development expo start --no-dev",
"atlas:export": "EXPO_UNSTABLE_ATLAS=true expo export --platform all",
"atlas:analyze": "expo-atlas",
"export": "bunx expo export",
"atlas:analyze:file": "expo-atlas .expo/atlas.jsonl",
"ios": "APP_VARIANT=development expo run:ios",
"ios:production": "APP_VARIANT=production expo run:ios --configuration Release",
"android:production": "APP_VARIANT=production expo run:android --variant release",
"icons:optimize": "svgo -f ./assets/icons",
"android": "APP_VARIANT=development expo run:android",
"prebuild": "APP_VARIANT=development expo prebuild",
"build:preview": "eas build --profile preview --platform all --non-interactive --no-wait",
"build:preview:android": "eas build --profile preview --platform android --non-interactive --no-wait",
"build:preview:ios": "eas build --profile preview --platform ios --non-interactive --no-wait",
"build:production": "eas build --profile production --platform ios --auto-submit --non-interactive --no-wait",
"build:production:android": "eas build --profile production --platform android --auto-submit --non-interactive --no-wait",
"build:production:ios": "eas build --profile production --platform ios --auto-submit --non-interactive --no-wait",
"build:local:production:ios": "APP_VARIANT=production expo prebuild && APP_VARIANT=production expo run:ios",
"alphabetize": "node scripts/alphabetizePackageJson.js",
"clean": "rm -rf ios android .expo node_modules",
"commit": "cz",
"gql:codegen": "graphql-codegen",
"deploy": "./scripts/deploy.sh",
"gen-env": "gen-env-types .env -o src/types/env.d.ts -e .",
"lint": "eslint \"src/**/*.{ts,tsx}\" --fix",
"lint:fix": "eslint \"src/**/*.{ts,tsx}\" --fix",
"prettier:check": "prettier --check \"src/**/*.{ts,tsx,json}\"",
"prettier:fix": "prettier --write \"src/**/*.{ts,tsx,json}\"",
"prebuild:android": "npx expo prebuild -p android",
"prebuild:ios": "npx expo prebuild -p ios",
"preinstall": "only-allow bun && node ./scripts/commit-hooks",
"postinstall": "lefthook install",
"ts:check": "tsc --noEmit",
"start:proxy": "ts-node-dev -P tsconfig.proxy.json --respawn --transpile-only proxy.ts",
"test": "jest",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --reporters=default --reporters=jest-junit",
"test:watch": "jest --watch",
"test:snapshot": "jest --updateSnapshot",
"test:perf": "reassure measure",
"web": "expo start --web",
"use-build-number": "./scripts/useBuildNumberEnv.sh",
"use-build-number-with-bump": "./scripts/useBuildNumberEnvWithBump.sh",
"storybook:generate": "sb-rn-get-stories",
"storybook:preview": "APP_VARIANT=development expo start --web",
"fingerprint:android": "npx expo-updates fingerprint:generate --platform android | jq -r '.hash' | xargs -n 1 echo 'fingerprint:'",
"fingerprint:ios": "npx expo-updates fingerprint:generate --platform ios | jq -r '.hash' | xargs -n 1 echo 'fingerprint:'",
"channels:cleanup": "./scripts/cleanup-channels.sh",
"build:debug:android": "cd android && ./gradlew assembleDebug -DtestBuildType=debug -Dorg.gradle.jvmargs=-Xmx4g",
"build:debug:ios": "cd ios && pod install && cd .. && xcodebuild ONLY_ACTIVE_ARCH=YES -workspace ios/Foam.xcworkspace -UseNewBuildSystem=YES -scheme Foam -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build -quiet",
"maestro:test": "maestro test --debug-output maestro-debug-output .maestro"
},
"dependencies": {
"@babel/runtime": "^7.28.2",
"@bacons/apple-colors": "^0.0.8",
"@bacons/apple-targets": "^3.0.2",
"@expo-google-fonts/source-code-pro": "^0.4.0",
"@expo/metro-config": "54.0.9",
"@expo/metro-runtime": "~6.1.2",
"@expo/webpack-config": "^19.0.0",
"@gorhom/bottom-sheet": "^5.1.8",
"@legendapp/list": "^1.1.4",
"@legendapp/state": "^2.1.15",
"@lodev09/react-native-true-sheet": "^3.5.6",
"@paralleldrive/cuid2": "^2.2.2",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.11",
"@radix-ui/colors": "^3.0.0",
"@react-native-async-storage/async-storage": "2.2.0",
"@react-native-community/slider": "5.0.1",
"@react-native-cookies/cookies": "^6.2.1",
"@react-native-firebase/app": "^23.7.0",
"@react-native-firebase/installations": "^23.7.0",
"@react-native-firebase/remote-config": "^23.7.0",
"@react-native-masked-view/masked-view": "^0.3.2",
"@react-native-picker/picker": "^2.11.4",
"@react-native/metro-config": "^0.82.1",
"@react-navigation/bottom-tabs": "^7.9.0",
"@react-navigation/elements": "^2.9.3",
"@react-navigation/native": "^7.1.26",
"@react-navigation/native-stack": "^7.9.0",
"@react-navigation/stack": "^7.6.13",
"@sentry/react-native": "~7.2.0",
"@shopify/flash-list": "2.0.2",
"@svgr/core": "^8.1.0",
"@svgr/plugin-jsx": "^8.1.0",
"@svgr/plugin-svgo": "^8.1.0",
"@tanstack/query-async-storage-persister": "^5.90.14",
"@tanstack/react-query": "^5.83.0",
"@tanstack/react-query-persist-client": "^5.90.14",
"app-icon-badge": "^0.1.2",
"axios": "^1.11.0",
"babel-plugin-react-compiler": "^19.0.0-beta-af1b7da-20250417",
"commitlint": "^19.8.1",
"date-fns": "^4.1.0",
"dayjs": "^1.11.13",
"dotenv": "^17.2.1",
"eas-cli": "^16.18.0",
"expo": "54.0.25",
"expo-auth-session": "~7.0.8",
"expo-background-task": "~1.0.8",
"expo-blur": "~15.0.7",
"expo-build-properties": "~1.0.9",
"expo-clipboard": "~8.0.7",
"expo-constants": "~18.0.9",
"expo-dev-client": "~6.0.13",
"expo-file-system": "^19.0.19",
"expo-glass-effect": "^0.1.8",
"expo-haptics": "~15.0.7",
"expo-image": "~3.0.8",
"expo-image-manipulator": "^14.0.7",
"expo-insights": "^0.10.8",
"expo-linear-gradient": "~15.0.7",
"expo-linking": "~8.0.8",
"expo-media-library": "~18.2.0",
"expo-network": "~8.0.7",
"expo-screen-orientation": "~9.0.7",
"expo-secure-store": "~15.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-task-manager": "~14.0.7",
"expo-updates": "~29.0.12",
"expo-video": "~3.0.11",
"express": "^5.1.0",
"jest-junit": "^16.0.0",
"pressto": "^0.6.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-native": "0.81.4",
"react-native-compressor": "^1.13.0",
"react-native-edge-to-edge": "1.6.0",
"react-native-fs": "^2.20.0",
"react-native-gesture-handler": "~2.28.0",
"react-native-keyboard-controller": "1.18.5",
"react-native-legal": "^1.3.1",
"react-native-logs": "^5.3.0",
"react-native-mmkv": "^3.3.0",
"react-native-nitro-modules": "0.31.10",
"react-native-phosphor": "^2.1.1",
"react-native-react-query-devtools": "^1.5.1",
"react-native-reanimated": "~4.1.1",
"react-native-reanimated-carousel": "^3.5.1",
"react-native-redash": "^18.1.3",
"react-native-release-profiler": "^0.4.4",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "4.19.0",
"react-native-svg": "15.12.1",
"react-native-tab-view": "^4.1.2",
"react-native-toast-message": "^2.3.3",
"react-native-unistyles": "^3.0.10",
"react-native-vector-icons": "^10.3.0",
"react-native-web": "^0.21.0",
"react-native-webview": "13.15.0",
"react-native-worklets": "^0.5.1",
"react-server-dom-webpack": "~19.0.0",
"reanimated-color-picker": "^4.1.0",
"sonner-native": "^0.21.0",
"twemoji": "^14.0.2",
"urql": "^5.0.1",
"zustand": "^5.0.6"
},
"devDependencies": {
"@actions/cache": "^4.0.3",
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.1",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.2",
"@babel/core": "^7.28.0",
"@babel/plugin-transform-class-static-block": "^7.28.3",
"@babel/preset-env": "^7.28.0",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"@eslint/compat": "1.3.1",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.32.0",
"@expo/fingerprint": "~0.15.1",
"@graphql-codegen/cli": "^6.1.0",
"@graphql-codegen/typescript": "^5.0.7",
"@graphql-codegen/typescript-operations": "^5.0.7",
"@graphql-codegen/typescript-urql": "^4.0.1",
"@react-native-community/cli": "20.0.1",
"@rozenite/expo-atlas-plugin": "^1.0.0-alpha.16",
"@rozenite/metro": "^1.0.0-alpha.16",
"@rozenite/mmkv-plugin": "^1.0.0-alpha.16",
"@rozenite/network-activity-plugin": "^1.0.0-alpha.16",
"@rozenite/performance-monitor-plugin": "^1.0.0-alpha.16",
"@rozenite/react-navigation-plugin": "^1.0.0-alpha.16",
"@rozenite/tanstack-query-plugin": "^1.0.0-alpha.16",
"@storybook/addon-jest": "^9.1.12",
"@storybook/addon-ondevice-actions": "^8.4.4",
"@storybook/addon-ondevice-controls": "^8.4.4",
"@storybook/addon-react-native-web": "^0.0.26",
"@storybook/react-native": "^8.4.4",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/react-native": "^13.2.0",
"@types/cors": "^2.8.19",
"@types/dotenv": "^8.2.3",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.20",
"@types/node": "24.1.0",
"@types/qs": "^6.14.0",
"@types/react": "~19.1.10",
"@types/react-native-vector-icons": "^6.4.18",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"@vercel/ncc": "^0.38.3",
"@welldone-software/why-did-you-render": "^10.0.1",
"babel-jest": "^30.0.5",
"babel-loader": "^10.0.0",
"babel-plugin-module-resolver": "^5.0.2",
"babel-plugin-transform-inline-environment-variables": "^0.4.4",
"commitizen": "4.3.1",
"conventional-changelog-angular-all": "1.7.0",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "7.4.0",
"danger": "^13.0.5",
"eslint": "^9.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-expo": "~10.0.0",
"eslint-config-prettier": "^10.1.5",
"eslint-config-universe": "^15.0.3",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.3",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-compiler": "^19.1.0-rc.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-native": "^5.0.0",
"eslint-plugin-refined": "^0.0.4",
"expo-atlas": "^0.4.3",
"git-cz": "^4.9.0",
"globals": "^16.3.0",
"jest": "~29.7.0",
"jest-expo": "~54.0.12",
"lefthook": "^1.12.2",
"only-allow": "^1.2.1",
"prettier": "^3.6.2",
"react-native-performance": "^6.0.0",
"react-native-url-polyfill": "^2.0.0",
"react-test-renderer": "19.1.0",
"reassure": "^1.4.0",
"sharp-cli": "^5.2.0",
"svgo": "^4.0.0",
"ts-jest": "^29.4.0",
"ts-migrate": "^0.1.35",
"tsx": "^4.20.3",
"typescript": "~5.9.2",
"typescript-eslint": "^8.38.0",
"url-loader": "^4.1.1",
"uuid": "^11.1.0"
},
"jest-junit": {
"ancestorSeparator": " › ",
"suiteName": "App Jest tests",
"outputName": "junit-app.xml"
},
"bun": {
"overrides": {
"uuid": "3.4.0"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"trustedDependencies": [
"@sentry/cli",
"core-js",
"core-js-pure",
"esbuild",
"nx",
"protobufjs"
],
"patchedDependencies": {
"expo-file-system@19.0.19": "patches/expo-file-system@19.0.19.patch",
"react-native-unistyles@3.0.10": "patches/react-native-unistyles@3.0.10.patch"
}
}