-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.01 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.01 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
{
"name": "detect-sleep",
"version": "1.0.0",
"main": "index.ts",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"lint": "eslint .",
"test": "jest",
"build:android": "eas build --platform android --profile production",
"build:ios": "eas build --platform ios --profile production",
"submit:android": "eas submit --platform android",
"submit:ios": "eas submit --platform ios"
},
"dependencies": {
"@expo/vector-icons": "^14.1.0",
"@react-native-async-storage/async-storage": "^2.1.2",
"@react-native-community/datetimepicker": "8.3.0",
"@react-navigation/bottom-tabs": "^7.3.14",
"@react-navigation/native": "^7.1.10",
"@react-navigation/native-stack": "^7.3.14",
"@react-navigation/stack": "^7.3.3",
"date-fns": "^4.1.0",
"expo": "53.0.12",
"expo-background-fetch": "~13.1.5",
"expo-constants": "~17.1.6",
"expo-device": "~7.1.4",
"expo-file-system": "~18.1.10",
"expo-haptics": "~14.1.4",
"expo-health-connect": "~0.1.1",
"expo-linking": "~7.1.5",
"expo-location": "~18.1.5",
"expo-notifications": "^0.29.13",
"expo-sensors": "~14.1.4",
"expo-sharing": "^13.1.5",
"expo-status-bar": "~2.2.3",
"expo-task-manager": "13.1.5",
"expo-updates": "~0.28.15",
"react": "19.0.0",
"react-native": "0.79.4",
"react-native-chart-kit": "^6.12.0",
"react-native-gesture-handler": "~2.24.0",
"react-native-health": "^1.19.0",
"react-native-reanimated": "~3.17.4",
"react-native-safe-area-context": "5.4.0",
"react-native-screens": "~4.11.1",
"react-native-svg": "15.11.2"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@types/react": "~19.0.10",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"eslint-config-universe": "^12.0.0",
"jest": "^29.2.1",
"prettier": "^3.2.5",
"typescript": "^5.3.0"
},
"private": true
}