-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
106 lines (106 loc) · 3.45 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
{
"name": "pixelfed",
"main": "expo-router/entry",
"version": "1.0.0",
"scripts": {
"upgrade:tamagui": "yarn up '*tamagui*'@latest '@tamagui/*'@latest",
"upgrade:tamagui:canary": "yarn up '*tamagui*'@canary '@tamagui/*'@canary",
"start": "cross-env NODE_ENV=development expo start --dev-client",
"android": "cross-env NODE_ENV=development expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"test": "jest --watchAll",
"lint": "biome check --write ./src",
"check": "npm run check:ts && npm run check:lint",
"check:ts": "tsc",
"check:lint": "biome check ./src",
"postinstall": "patch-package"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@expo/metro-runtime": "~4.0.1",
"@gorhom/bottom-sheet": "^5",
"@react-native-clipboard/clipboard": "^1.16.0",
"@react-native-community/blur": "^4.4.1",
"@react-native-community/hooks": "^2.8.0",
"@react-native-community/netinfo": "^11.3.3",
"@react-native-picker/picker": "2.9.0",
"@react-navigation/material-top-tabs": "^7.1.1",
"@react-navigation/native": "^7.0.14",
"@shopify/flash-list": "1.7.3",
"@tamagui/config": "^1.125.17",
"@tamagui/metro-plugin": "^1.125.17",
"@tamagui/toast": "^1.125.17",
"@tanstack/react-query": "^5.34.1",
"babel-preset-expo": "~12.0.0",
"buffer": "^6.0.3",
"burnt": "^0.12.2",
"expo": "^52.0.0",
"expo-application": "~6.0.2",
"expo-constants": "~17.0.7",
"expo-device": "~7.0.2",
"expo-file-system": "~18.0.11",
"expo-font": "~13.0.4",
"expo-haptics": "~14.0.1",
"expo-image": "~2.0.6",
"expo-image-manipulator": "~13.0.6",
"expo-image-picker": "~16.0.6",
"expo-linking": "~7.0.5",
"expo-notifications": "~0.29.13",
"expo-router": "~4.0.17",
"expo-secure-store": "~14.0.1",
"expo-share-intent": "^3.0.0",
"expo-splash-screen": "~0.29.22",
"expo-status-bar": "~2.0.1",
"expo-system-ui": "~4.0.8",
"expo-web-browser": "~14.0.2",
"patch-package": "^8.0.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"react": "18.3.1",
"react-dom": "^18.3.1",
"react-helmet-async": "~2.0.4",
"react-native": "0.76.7",
"react-native-blurhash": "^2.1.0",
"react-native-gesture-handler": "~2.20.2",
"react-native-gifted-chat": "^2.4.0",
"react-native-heic-converter": "^1.3.3",
"react-native-keyboard-controller": "^1.16.5",
"react-native-mmkv": "^2.12.2",
"react-native-pager-view": "6.5.1",
"react-native-pressable-opacity": "^1.0.10",
"react-native-reanimated": "3.16.1",
"react-native-reanimated-carousel": "v4.0.0-alpha.12",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "~4.4.0",
"react-native-static-safe-area-insets": "^2.2.0",
"react-native-svg": "15.8.0",
"react-native-video": "^6.2.0",
"react-native-vision-camera": "4.6.1",
"react-native-web": "~0.19.6",
"semver": ">=7.5.2",
"stream-browserify": "^3.0.0",
"tamagui": "^1.125.17",
"typescript": "~5.3.3",
"util": "^0.12.5"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@biomejs/biome": "^1.9.4",
"@react-native-community/cli": "latest",
"@types/react": "~18.3.12",
"babel-plugin-module-resolver": "^5.0.0",
"cross-env": "^7.0.3",
"expo-build-properties": "~0.13.2"
},
"private": true,
"expo": {
"doctor": {
"reactNativeDirectoryCheck": {
"enabled": false
}
}
}
}