-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.42 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.42 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
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "worklog-mobile",
"version": "1.0.0",
"private": true,
"main": "expo-router/entry",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"test": "jest",
"test:cov": "jest --coverage",
"verify": "npm run test -- --ci",
"build:android:debug": "expo prebuild --platform android --non-interactive && cd android && ./gradlew assembleDebug",
"build:android:release": "expo prebuild --platform android --non-interactive && cd android && ./gradlew assembleRelease"
},
"dependencies": {
"@react-native-async-storage/async-storage": "~1.21.0",
"@react-navigation/native": "^7.0.6",
"@react-navigation/native-stack": "^7.0.7",
"@supabase/supabase-js": "^2.44.0",
"dotenv": "^17.3.1",
"expo": "~52.0.14",
"expo-asset": "~10.0.10",
"expo-blur": "~14.0.3",
"expo-build-properties": "~0.13.2",
"expo-clipboard": "~6.0.3",
"expo-crypto": "~14.0.1",
"expo-file-system": "~18.0.6",
"expo-location": "~17.0.1",
"expo-router": "~4.0.12",
"expo-secure-store": "~14.0.1",
"expo-splash-screen": "^0.29.24",
"expo-status-bar": "~2.0.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-native": "0.76.3",
"react-native-gesture-handler": "~2.20.2",
"react-native-reanimated": "~3.16.1",
"react-native-safe-area-context": "4.10.5",
"react-native-screens": "~4.5.0",
"react-native-vector-icons": "^10.1.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@types/jest": "^29.5.12",
"@types/react": "~18.3.11",
"jest": "^29.7.0",
"jest-expo": "~52.0.1",
"ts-jest": "^29.4.6",
"typescript": "^5.6.3"
},
"expo": {
"name": "WorkLog",
"slug": "worklog-mobile",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/logo.png",
"scheme": "worklog",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/logo.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.worklog.app"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/logo.png",
"backgroundColor": "#ffffff"
},
"package": "com.worklog.app"
},
"plugins": [
"expo-router"
],
"extra": {
"eas": {
"projectId": "YOUR-EAS-PROJECT-ID"
}
}
}
}