mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
1{
2 "name": "bsky.app",
3 "version": "1.79.0",
4 "private": true,
5 "engines": {
6 "node": ">=18"
7 },
8 "packageManager": "yarn@1.22.19",
9 "scripts": {
10 "prepare": "is-ci || husky install",
11 "postinstall": "patch-package && yarn intl:compile",
12 "prebuild": "expo prebuild --clean",
13 "android": "expo run:android",
14 "ios": "expo run:ios",
15 "web": "expo start --web",
16 "use-build-number": "./scripts/useBuildNumberEnv.sh",
17 "use-build-number-with-bump": "./scripts/useBuildNumberEnvWithBump.sh",
18 "build-web": "expo export:web && node ./scripts/post-web-build.js && cp -v ./web-build/static/js/*.* ./bskyweb/static/js/",
19 "build-all": "yarn intl:build && yarn use-build-number-with-bump eas build --platform all",
20 "build-ios": "yarn use-build-number-with-bump eas build -p ios",
21 "build-android": "yarn use-build-number-with-bump eas build -p android",
22 "build": "yarn use-build-number-with-bump eas build",
23 "build-embed": "cd bskyembed && yarn build && yarn build-snippet && cd .. && node ./scripts/post-embed-build.js",
24 "start": "expo start --dev-client",
25 "start:prod": "expo start --dev-client --no-dev --minify",
26 "clean-cache": "rm -rf node_modules/.cache/babel-loader/*",
27 "test": "NODE_ENV=test jest --forceExit --testTimeout=20000 --bail",
28 "test-watch": "NODE_ENV=test jest --watchAll",
29 "test-ci": "NODE_ENV=test jest --ci --forceExit --reporters=default --reporters=jest-junit",
30 "test-coverage": "NODE_ENV=test jest --coverage",
31 "lint": "eslint --cache --ext .js,.jsx,.ts,.tsx src",
32 "typecheck": "tsc --project ./tsconfig.check.json",
33 "e2e:mock-server": "./jest/dev-infra/with-test-redis-and-db.sh ts-node --project tsconfig.e2e.json __e2e__/mock-server.ts",
34 "e2e:metro": "NODE_ENV=test RN_SRC_EXT=e2e.ts,e2e.tsx expo run:ios",
35 "e2e:build": "NODE_ENV=test detox build -c ios.sim.debug",
36 "e2e:run": "NODE_ENV=test detox test --configuration ios.sim.debug --take-screenshots all",
37 "perf:test": "NODE_ENV=test maestro test",
38 "perf:test:run": "NODE_ENV=test maestro test __e2e__/maestro/scroll.yaml",
39 "perf:test:measure": "NODE_ENV=test flashlight test --bundleId xyz.blueskyweb.app --testCommand \"yarn perf:test\" --duration 150000 --resultsFilePath .perf/results.json",
40 "perf:test:results": "NODE_ENV=test flashlight report .perf/results.json",
41 "perf:measure": "NODE_ENV=test flashlight measure",
42 "intl:build": "yarn intl:extract && yarn intl:compile",
43 "intl:extract": "lingui extract",
44 "intl:compile": "lingui compile",
45 "nuke": "rm -rf ./node_modules && rm -rf ./ios && rm -rf ./android",
46 "update-extensions": "bash scripts/updateExtensions.sh",
47 "export": "npx expo export",
48 "make-deploy-bundle": "bash scripts/bundleUpdate.sh",
49 "generate-webpack-stats-file": "EXPO_PUBLIC_GENERATE_STATS=1 yarn build-web",
50 "open-analyzer": "EXPO_PUBLIC_OPEN_ANALYZER=1 yarn build-web"
51 },
52 "dependencies": {
53 "@atproto/api": "^0.12.5",
54 "@bam.tech/react-native-image-resizer": "^3.0.4",
55 "@braintree/sanitize-url": "^6.0.2",
56 "@discord/bottom-sheet": "https://github.com/bluesky-social/react-native-bottom-sheet.git#discord-fork-4.6.1",
57 "@emoji-mart/react": "^1.1.1",
58 "@expo/html-elements": "^0.4.2",
59 "@expo/webpack-config": "^19.0.0",
60 "@floating-ui/dom": "^1.6.3",
61 "@floating-ui/react-dom": "^2.0.8",
62 "@fortawesome/fontawesome-svg-core": "^6.1.1",
63 "@fortawesome/free-regular-svg-icons": "^6.1.1",
64 "@fortawesome/free-solid-svg-icons": "^6.1.1",
65 "@fortawesome/react-native-fontawesome": "^0.3.0",
66 "@lingui/react": "^4.5.0",
67 "@mattermost/react-native-paste-input": "^0.6.4",
68 "@miblanchard/react-native-slider": "^2.3.1",
69 "@radix-ui/react-dropdown-menu": "^2.0.6",
70 "@react-native-async-storage/async-storage": "1.23.1",
71 "@react-native-masked-view/masked-view": "0.3.0",
72 "@react-native-menu/menu": "^0.8.0",
73 "@react-native-picker/picker": "2.6.1",
74 "@react-navigation/bottom-tabs": "^6.5.7",
75 "@react-navigation/drawer": "^6.6.2",
76 "@react-navigation/native": "^6.1.6",
77 "@react-navigation/native-stack": "^6.9.12",
78 "@segment/analytics-next": "^1.51.3",
79 "@segment/analytics-react": "^1.0.0-rc1",
80 "@segment/analytics-react-native": "^2.10.1",
81 "@segment/sovran-react-native": "^0.4.5",
82 "@sentry/react-native": "5.5.0",
83 "@tamagui/focus-scope": "^1.84.1",
84 "@tanstack/query-async-storage-persister": "^5.25.0",
85 "@tanstack/react-query": "^5.8.1",
86 "@tanstack/react-query-persist-client": "^5.25.0",
87 "@tiptap/core": "^2.0.0-beta.220",
88 "@tiptap/extension-document": "^2.0.0-beta.220",
89 "@tiptap/extension-hard-break": "^2.0.3",
90 "@tiptap/extension-history": "^2.0.3",
91 "@tiptap/extension-mention": "^2.0.0-beta.220",
92 "@tiptap/extension-paragraph": "^2.0.0-beta.220",
93 "@tiptap/extension-placeholder": "^2.0.0-beta.220",
94 "@tiptap/extension-text": "^2.0.0-beta.220",
95 "@tiptap/html": "^2.1.11",
96 "@tiptap/pm": "^2.0.0-beta.220",
97 "@tiptap/react": "^2.0.0-beta.220",
98 "@tiptap/suggestion": "^2.0.0-beta.220",
99 "@types/invariant": "^2.2.37",
100 "@types/node": "^18.16.2",
101 "@zxing/text-encoding": "^0.9.0",
102 "array.prototype.findlast": "^1.2.3",
103 "await-lock": "^2.2.2",
104 "babel-plugin-transform-remove-console": "^6.9.4",
105 "base64-js": "^1.5.1",
106 "bcp-47-match": "^2.0.3",
107 "date-fns": "^2.30.0",
108 "email-validator": "^2.0.4",
109 "emoji-mart": "^5.5.2",
110 "eventemitter3": "^5.0.1",
111 "expo": "^50.0.8",
112 "expo-application": "^5.8.3",
113 "expo-build-properties": "^0.11.1",
114 "expo-camera": "~14.0.4",
115 "expo-clipboard": "^5.0.1",
116 "expo-constants": "~15.4.5",
117 "expo-dev-client": "~3.3.8",
118 "expo-device": "~5.9.3",
119 "expo-file-system": "^16.0.9",
120 "expo-haptics": "^12.8.1",
121 "expo-image": "~1.10.6",
122 "expo-image-manipulator": "^11.8.0",
123 "expo-image-picker": "~14.7.1",
124 "expo-linear-gradient": "^12.7.2",
125 "expo-linking": "^6.2.2",
126 "expo-localization": "~14.8.3",
127 "expo-media-library": "~15.9.1",
128 "expo-navigation-bar": "~2.8.1",
129 "expo-notifications": "~0.27.6",
130 "expo-sharing": "^11.10.0",
131 "expo-splash-screen": "~0.26.4",
132 "expo-status-bar": "~1.11.1",
133 "expo-system-ui": "~2.9.3",
134 "expo-task-manager": "~11.7.2",
135 "expo-updates": "~0.24.10",
136 "expo-web-browser": "~12.8.2",
137 "fast-text-encoding": "^1.0.6",
138 "history": "^5.3.0",
139 "js-sha256": "^0.9.0",
140 "jwt-decode": "^4.0.0",
141 "lande": "^1.0.10",
142 "lodash.chunk": "^4.2.0",
143 "lodash.debounce": "^4.0.8",
144 "lodash.isequal": "^4.5.0",
145 "lodash.omit": "^4.5.0",
146 "lodash.once": "^4.1.1",
147 "lodash.random": "^3.2.0",
148 "lodash.samplesize": "^4.2.0",
149 "lodash.set": "^4.3.2",
150 "lodash.shuffle": "^4.2.0",
151 "mobx": "^6.6.1",
152 "mobx-react-lite": "^3.4.0",
153 "mobx-utils": "^6.0.6",
154 "nanoid": "^5.0.5",
155 "normalize-url": "^8.0.0",
156 "patch-package": "^6.5.1",
157 "postinstall-postinstall": "^2.1.0",
158 "psl": "^1.9.0",
159 "react": "18.2.0",
160 "react-avatar-editor": "^13.0.0",
161 "react-dom": "^18.2.0",
162 "react-keyed-flatten-children": "^3.0.0",
163 "react-native": "0.73.2",
164 "react-native-date-picker": "^4.4.0",
165 "react-native-drawer-layout": "^4.0.0-alpha.3",
166 "react-native-fs": "^2.20.0",
167 "react-native-gesture-handler": "~2.14.0",
168 "react-native-get-random-values": "~1.11.0",
169 "react-native-image-crop-picker": "^0.38.1",
170 "react-native-ios-context-menu": "^1.15.3",
171 "react-native-pager-view": "6.2.3",
172 "react-native-picker-select": "^8.1.0",
173 "react-native-progress": "bluesky-social/react-native-progress",
174 "react-native-reanimated": "^3.6.0",
175 "react-native-root-siblings": "^4.1.1",
176 "react-native-safe-area-context": "4.8.2",
177 "react-native-screens": "~3.29.0",
178 "react-native-svg": "14.1.0",
179 "react-native-uitextview": "^1.1.6",
180 "react-native-url-polyfill": "^1.3.0",
181 "react-native-uuid": "^2.0.1",
182 "react-native-web": "~0.19.6",
183 "react-native-web-webview": "^1.0.2",
184 "react-native-webview": "13.6.4",
185 "react-responsive": "^9.0.2",
186 "rn-fetch-blob": "^0.12.0",
187 "sentry-expo": "~7.0.1",
188 "statsig-react-native-expo": "^4.6.1",
189 "tippy.js": "^6.3.7",
190 "tlds": "^1.234.0",
191 "zeego": "^1.6.2",
192 "zod": "^3.20.2"
193 },
194 "devDependencies": {
195 "@atproto/dev-env": "^0.3.5",
196 "@babel/core": "^7.23.2",
197 "@babel/preset-env": "^7.20.0",
198 "@babel/runtime": "^7.20.0",
199 "@did-plc/server": "^0.0.1",
200 "@expo/config-plugins": "7.8.0",
201 "@expo/prebuild-config": "6.7.0",
202 "@lingui/cli": "^4.5.0",
203 "@lingui/macro": "^4.5.0",
204 "@pmmmwh/react-refresh-webpack-plugin": "^0.5.11",
205 "@react-native-community/eslint-config": "^3.0.0",
206 "@react-native/typescript-config": "^0.74.0",
207 "@testing-library/jest-native": "^5.4.1",
208 "@testing-library/react-native": "^11.5.2",
209 "@tsconfig/react-native": "^2.0.3",
210 "@types/he": "^1.1.2",
211 "@types/jest": "^29.4.0",
212 "@types/lodash.chunk": "^4.2.7",
213 "@types/lodash.debounce": "^4.0.7",
214 "@types/lodash.isequal": "^4.5.6",
215 "@types/lodash.omit": "^4.5.7",
216 "@types/lodash.once": "^4.1.7",
217 "@types/lodash.random": "^3.2.7",
218 "@types/lodash.samplesize": "^4.2.7",
219 "@types/lodash.set": "^4.3.7",
220 "@types/lodash.shuffle": "^4.2.7",
221 "@types/psl": "^1.1.1",
222 "@types/react-avatar-editor": "^13.0.0",
223 "@types/react-dom": "^18.2.18",
224 "@types/react-responsive": "^8.0.5",
225 "@types/react-test-renderer": "^17.0.1",
226 "@typescript-eslint/eslint-plugin": "^5.48.2",
227 "@typescript-eslint/parser": "^5.48.2",
228 "babel-jest": "^29.7.0",
229 "babel-loader": "^9.1.2",
230 "babel-plugin-macros": "^3.1.0",
231 "babel-plugin-module-resolver": "^5.0.0",
232 "babel-plugin-react-native-web": "^0.18.12",
233 "babel-preset-expo": "^10.0.0",
234 "detox": "^20.14.8",
235 "eslint": "^8.19.0",
236 "eslint-plugin-bsky-internal": "link:./eslint",
237 "eslint-plugin-detox": "^1.0.0",
238 "eslint-plugin-ft-flow": "^2.0.3",
239 "eslint-plugin-lingui": "^0.2.0",
240 "eslint-plugin-react": "^7.33.2",
241 "eslint-plugin-react-native-a11y": "^3.3.0",
242 "eslint-plugin-simple-import-sort": "^12.0.0",
243 "html-webpack-plugin": "^5.5.0",
244 "husky": "^8.0.3",
245 "is-ci": "^3.0.1",
246 "jest": "^29.7.0",
247 "jest-expo": "^50.0.1",
248 "jest-junit": "^15.0.0",
249 "lint-staged": "^13.2.3",
250 "metro-react-native-babel-preset": "^0.73.7",
251 "prettier": "^2.8.3",
252 "react-native-dotenv": "^3.3.1",
253 "react-refresh": "^0.14.0",
254 "react-scripts": "^5.0.1",
255 "react-test-renderer": "18.2.0",
256 "ts-node": "^10.9.1",
257 "typescript": "^5.3.3",
258 "url-loader": "^4.1.1",
259 "webpack": "^5.75.0",
260 "webpack-bundle-analyzer": "^4.10.1",
261 "webpack-cli": "^5.0.1",
262 "webpack-dev-server": "^4.11.1"
263 },
264 "resolutions": {
265 "@types/react": "^18",
266 "**/zeed-dom": "0.10.9"
267 },
268 "jest": {
269 "preset": "jest-expo/ios",
270 "setupFilesAfterEnv": [
271 "./jest/jestSetup.js",
272 "@testing-library/jest-native/extend-expect"
273 ],
274 "moduleFileExtensions": [
275 "ts",
276 "tsx",
277 "js",
278 "jsx",
279 "json",
280 "node"
281 ],
282 "transform": {
283 "\\.[jt]sx?$": "babel-jest"
284 },
285 "transformIgnorePatterns": [
286 "node_modules/(?!((jest-)?react-native|@react-native(-community)?)|expo(nent)?|@expo(nent)?/.*|@expo-google-fonts/.*|react-navigation|nanoid|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|normalize-url|react-native-svg|@sentry/.*|sentry-expo|bcp-47-match)"
287 ],
288 "modulePathIgnorePatterns": [
289 "__tests__/.*/__mocks__",
290 "__e2e__/.*"
291 ],
292 "coveragePathIgnorePatterns": [
293 "<rootDir>/node_modules/",
294 "<rootDir>/src/platform",
295 "<rootDir>/src/third-party",
296 "<rootDir>/src/view/com/util",
297 "<rootDir>/src/state/lib",
298 "<rootDir>/__tests__/test-utils.js"
299 ],
300 "reporters": [
301 "default",
302 "jest-junit"
303 ]
304 },
305 "browserslist": {
306 "production": [
307 ">0.2%",
308 "not dead",
309 "not op_mini all"
310 ],
311 "development": [
312 "last 1 chrome version",
313 "last 1 firefox version",
314 "last 1 safari version"
315 ]
316 },
317 "lint-staged": {
318 "*{.js,.jsx,.ts,.tsx}": [
319 "eslint --cache --fix",
320 "prettier --cache --write --ignore-unknown"
321 ]
322 }
323}