-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.26 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 3.26 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
87
88
89
90
91
92
93
94
{
"name": "planneriti",
"main": "expo-router/entry",
"version": "1.5.0",
"scripts": {
"dev": "expo start --dev-client",
"dev:clear": "expo start --clear --dev-client",
"dev:go": "expo start --go",
"test": "jest --watchAll=false",
"test:watch": "jest --watchAll",
"lint": "expo lint",
"typecheck": "tsc --noEmit",
"build": "eas build --profile production --platform android",
"build:ios": "eas build --profile production --platform ios",
"build:dev": "eas build --profile development --platform android",
"build:dev:ios": "eas build --profile development --platform ios",
"build:dev:local": "eas build --profile development --platform android --local",
"build:dev:local:ios": "eas build --profile development --platform ios --local",
"update": "eas update --channel production --platform android",
"update:ios": "eas update --channel production --platform ios",
"build:apks": "node scripts/build-apks.js",
"format": "prettier . --write",
"format:check": "prettier . --check"
},
"jest": {
"preset": "jest-expo",
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/$1"
}
},
"dependencies": {
"@expo/dom-webview": "~56.0.5",
"@expo/metro-runtime": "~56.0.15",
"@gorhom/bottom-sheet": "^5.2.14",
"@react-native-async-storage/async-storage": "2.2.0",
"@react-native-vector-icons/feather": "^13.1.2",
"@react-native-vector-icons/fontawesome": "^13.1.2",
"@react-native-vector-icons/ionicons": "^13.1.2",
"@react-native-vector-icons/material-icons": "^13.1.2",
"crypto-js": "^4.2.0",
"date-fns": "^4.4.0",
"dotenv": "^17.4.2",
"expo": "56.0.11",
"expo-application": "~56.0.3",
"expo-blur": "~56.0.3",
"expo-build-properties": "~56.0.18",
"expo-constants": "~56.0.18",
"expo-dev-client": "~56.0.20",
"expo-device": "~56.0.4",
"expo-font": "~56.0.6",
"expo-haptics": "~56.0.3",
"expo-linear-gradient": "~56.0.4",
"expo-linking": "~56.0.14",
"expo-navigation-bar": "~56.0.3",
"expo-notifications": "~56.0.17",
"expo-print": "~56.0.4",
"expo-router": "~56.2.10",
"expo-secure-store": "~56.0.4",
"expo-sharing": "~56.0.17",
"expo-splash-screen": "~56.0.10",
"expo-status-bar": "~56.0.4",
"expo-symbols": "~56.0.6",
"expo-system-ui": "~56.0.5",
"expo-updates": "~56.0.19",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-native": "0.85.3",
"react-native-gesture-handler": "~2.31.2",
"react-native-keyboard-aware-scroll-view": "^0.9.5",
"react-native-reanimated": "4.3.1",
"react-native-safe-area-context": "~5.7.0",
"react-native-screens": "~4.25.2",
"react-native-worklets": "0.8.3",
"react-native-worklets-core": "^1.6.3"
},
"devDependencies": {
"@babel/core": "^7.29.7",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/crypto-js": "^4.2.2",
"@types/jest": "^29.5.14",
"@types/react": "~19.2.17",
"@types/react-test-renderer": "^19.1.0",
"eslint": "^9.39.4",
"eslint-config-expo": "~56.0.4",
"eslint-config-prettier": "^10.1.8",
"jest": "^29.7.0",
"jest-expo": "~56.0.5",
"prettier": "^3.8.4",
"react-test-renderer": "19.2.3",
"typescript": "~6.0.3"
},
"packageManager": "pnpm@11.1.2",
"private": true
}