-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
234 lines (234 loc) · 8.86 KB
/
package.json
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
{
"name": "foam",
"version": "0.1.0",
"private": true,
"engineStrict": true,
"main": "index.js",
"engines": {
"node": "20.10.0",
"bun": "1.1.42"
},
"scripts": {
"start": "APP_VARIANT=development expo start --dev-client",
"ios": "APP_VARIANT=development expo run:ios",
"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",
"check:node": "check-node-version --package",
"clean": "rm -rf ios android .expo node_modules",
"commit": "cz",
"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": "bun run check:node",
"prepare": "husky",
"ts:check": "tsc -p . --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",
"web": "expo start --web",
"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:'",
"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.23.9",
"@expo-google-fonts/inter": "^0.2.3",
"@expo/webpack-config": "^19.0.0",
"@gorhom/bottom-sheet": "^4.5.1",
"@radix-ui/colors": "^3.0.0",
"@react-native-async-storage/async-storage": "1.23.1",
"@react-native-community/netinfo": "^11.3.1",
"@react-native-cookies/cookies": "^6.2.1",
"@react-native-firebase/analytics": "^21.10.0",
"@react-native-firebase/crashlytics": "^21.10.0",
"@react-native-masked-view/masked-view": "0.3.2",
"@react-navigation/bottom-tabs": "^6.5.10",
"@react-navigation/material-top-tabs": "^6.6.5",
"@react-navigation/native": "^6.1.9",
"@react-navigation/native-stack": "^6.9.15",
"@react-navigation/stack": "^6.3.20",
"@sentry/react-native": "^6.7.0",
"@shopify/flash-list": "1.7.3",
"@tanstack/react-query": "^5.17.10",
"@twurple/api": "^7.2.0",
"@twurple/auth": "^7.2.0",
"app-icon-badge": "^0.1.2",
"async-mutex": "^0.4.1",
"axios": "^1.7.7",
"axios-mock-adapter": "^2.1.0",
"clsx": "^2.1.0",
"commitlint": "^18.4.4",
"core-js": "^3.39.0",
"date-fns": "^4.1.0",
"dotenv": "^16.4.7",
"emotettv": "^1.0.2",
"expo": "~52.0.35",
"expo-auth-session": "~6.0.3",
"expo-av": "~15.0.1",
"expo-build-properties": "^0.13.1",
"expo-clipboard": "~7.0.0",
"expo-constants": "~17.0.6",
"expo-dev-client": "~5.0.12",
"expo-dev-launcher": "^5.0.25",
"expo-font": "~13.0.1",
"expo-haptics": "~14.0.1",
"expo-image": "~2.0.5",
"expo-linear-gradient": "~14.0.1",
"expo-linking": "~7.0.5",
"expo-screen-orientation": "~8.0.0",
"expo-secure-store": "~14.0.0",
"expo-splash-screen": "~0.29.22",
"expo-status-bar": "~2.0.0",
"expo-updates": "~0.26.18",
"expo-video": "^2.0.5",
"express": "^4.21.0",
"firebase": "^11.3.1",
"jest-junit": "16.0.0",
"newrelic-react-native-agent": "^1.4.5",
"pino": "^8.17.2",
"pino-pretty": "^10.3.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-native": "0.76.7",
"react-native-gesture-handler": "~2.20.2",
"react-native-markdown-display": "^7.0.2",
"react-native-marked": "^6.0.5",
"react-native-mmkv": "^3.1.0",
"react-native-orientation-locker": "^1.6.0",
"react-native-pager-view": "6.5.1",
"react-native-paper": "^5.12.5",
"react-native-reanimated": "~3.16.1",
"react-native-reanimated-carousel": "^3.5.1",
"react-native-render-html": "^6.3.4",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "~4.4.0",
"react-native-svg": "15.8.0",
"react-native-tab-view": "^3.5.2",
"react-native-toast-message": "^2.2.1",
"react-native-unistyles": "2.20.0",
"react-native-vector-icons": "^10.2.0",
"react-native-web": "~0.19.6",
"react-native-webview": "13.12.5",
"sonner-native": "^0.17.0",
"tmi.js": "^1.8.5"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@commitlint/cli": "18.6.0",
"@commitlint/config-conventional": "18.6.0",
"@eslint/compat": "^1.2.5",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.19.0",
"@react-native-community/datetimepicker": "^8.2.0",
"@react-native-community/slider": "^4.5.5",
"@react-native-firebase/app": "^21.10.0",
"@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": "^12.4.3",
"@types/cors": "^2.8.17",
"@types/dotenv": "^8.2.3",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.11",
"@types/lodash": "^4.17.9",
"@types/node": "22.10.1",
"@types/qs": "^6.9.17",
"@types/react": "~18.3.12",
"@types/react-native-vector-icons": "^6.4.18",
"@types/tmi.js": "^1.8.6",
"@typescript-eslint/eslint-plugin": "8.6.0",
"@typescript-eslint/parser": "8.6.0",
"babel-jest": "^29.7.0",
"babel-loader": "^8.4.1",
"babel-plugin-module-resolver": "^5.0.2",
"babel-plugin-transform-inline-environment-variables": "^0.4.4",
"check-node-version": "^4.2.1",
"commitizen": "4.3.0",
"conventional-changelog-angular-all": "1.7.0",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "7.2.1",
"eslint": "8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^14.2.13",
"eslint-config-prettier": "^9.1.0",
"eslint-config-universe": "^14.0.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-native": "^5.0.0",
"git-cz": "^4.9.0",
"globals": "^15.14.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-expo": "~52.0.4",
"lerna": "^8.1.8",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"react-native-url-polyfill": "^2.0.0",
"ts-jest": "^29.2.5",
"ts-migrate": "^0.1.35",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "5.3.3",
"typescript-eslint": "^8.21.0"
},
"jest-junit": {
"ancestorSeparator": " › ",
"suiteName": "App Jest tests",
"outputName": "junit-app.xml"
},
"bun": {
"overrides": {
"uuid": "3.4.0"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && npx cz --hook || true"
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint"
],
"*.{js,jsx,ts,tsx,css,scss,html}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"trustedDependencies": [
"core-js"
]
}