forked from SoundLogTeam/SoundLogApp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.92 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.92 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
{
"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.4",
"expo-camera": "~56.0.7",
"expo-constants": "~56.0.15",
"expo-dev-client": "~56.0.15",
"expo-file-system": "~56.0.7",
"expo-font": "~56.0.5",
"expo-image": "~56.0.9",
"expo-linear-gradient": "~56.0.4",
"expo-linking": "~56.0.11",
"expo-location": "~56.0.13",
"expo-media-library": "~56.0.6",
"expo-router": "^56.2.6",
"expo-sharing": "~56.0.13",
"expo-status-bar": "~56.0.4",
"nativewind": "^4.2.4",
"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": "4.0.3",
"react-native-web": "^0.21.2",
"react-native-worklets": "0.8.3",
"zustand": "^5.0.13"
},
"devDependencies": {
"@types/react": "~19.2.2",
"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 start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"web:clear": "expo start --web --clear",
"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": "npm run typecheck && npm run doctor"
},
"private": true
}