-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.55 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
{
"name": "soundlog",
"version": "1.0.0",
"main": "expo-router/entry",
"dependencies": {
"@expo/vector-icons": "^15.1.1",
"@react-native-async-storage/async-storage": "2.2.0",
"@tanstack/react-query": "^5.100.14",
"expo": "~56.0.15",
"expo-build-properties": "~56.0.22",
"expo-camera": "~56.0.8",
"expo-constants": "~56.0.15",
"expo-dev-client": "~56.0.22",
"expo-file-system": "~56.0.7",
"expo-font": "~56.0.5",
"expo-image": "~56.0.11",
"expo-image-picker": "~56.0.20",
"expo-linear-gradient": "~56.0.4",
"expo-linking": "~56.0.15",
"expo-location": "~56.0.20",
"expo-media-library": "~56.0.9",
"expo-router": "~56.2.14",
"expo-secure-store": "~56.0.4",
"expo-sharing": "~56.0.21",
"expo-status-bar": "~56.0.4",
"nativewind": "^4.2.4",
"ol": "^10.9.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-native": "0.85.3",
"react-native-reanimated": "4.3.1",
"react-native-safe-area-context": "~5.7.0",
"react-native-screens": "4.25.2",
"react-native-view-shot": "5.1.0",
"react-native-web": "^0.21.2",
"react-native-worklets": "0.8.3",
"zustand": "^5.0.13"
},
"devDependencies": {
"@types/react": "~19.2.2",
"@vercel/config": "^0.5.5",
"babel-plugin-module-resolver": "^5.0.3",
"babel-preset-expo": "^56.0.12",
"prettier-plugin-tailwindcss": "^0.5.14",
"tailwindcss": "^3.4.19",
"typescript": "~6.0.3"
},
"scripts": {
"start": "expo start",
"dev:client": "expo start --dev-client",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"web:clear": "expo start --web --clear",
"setup:githooks": "sh scripts/install-git-hooks.sh",
"build:dev:android": "eas build --profile development --platform android",
"build:dev:ios": "eas build --profile development --platform ios",
"build:preview": "eas build --profile preview --platform all",
"build:production": "eas build --profile production --platform all",
"typecheck": "tsc --noEmit",
"doctor": "npx expo-doctor",
"check:api-origin": "node scripts/check-api-origin.js",
"check:deployed-web": "node scripts/check-deployed-web.js",
"check:server-web-export": "node scripts/check-server-web-export.js",
"check:store-release": "node scripts/check-store-release.js",
"check:vercel-config": "node scripts/check-vercel-config.js",
"check": "npm run typecheck && npm run doctor",
"prepare": "sh scripts/install-git-hooks.sh"
},
"private": true,
"overrides": {
"uuid": "^11.1.1"
}
}