-
Notifications
You must be signed in to change notification settings - Fork 164
/
package.json
82 lines (82 loc) · 2.74 KB
/
package.json
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
{
"name": "react-conf-app",
"version": "1.1.0",
"main": "expo-router/entry",
"private": true,
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"test": "jest",
"sync-api": "node ./scripts/syncApi.js",
"postinstall": "patch-package",
"lint": "eslint ."
},
"dependencies": {
"@config-plugins/react-native-dynamic-app-icon": "^8.0.0",
"@expo/react-native-action-sheet": "^4.0.1",
"@expo/vector-icons": "^14.0.2",
"@react-native-async-storage/async-storage": "1.23.1",
"@react-native-community/netinfo": "11.4.1",
"@react-native-masked-view/masked-view": "0.3.2",
"@react-navigation/core": "^7.0.0",
"@react-navigation/elements": "^2.0.0",
"babel-plugin-react-compiler": "^19.0.0-beta-a7bf2bd-20241110",
"date-fns": "^3.6.0",
"date-fns-tz": "^3.1.3",
"eslint-plugin-react-compiler": "^19.0.0-beta-a7bf2bd-20241110",
"eslint-plugin-react-native": "^4.1.0",
"expo": "~52.0.7",
"expo-application": "~6.0.1",
"expo-asset": "~11.0.1",
"expo-blur": "~14.0.1",
"expo-build-properties": "~0.13.1",
"expo-constants": "~17.0.3",
"expo-dev-client": "~5.0.2",
"expo-device": "~7.0.1",
"expo-font": "~13.0.1",
"expo-haptics": "~14.0.0",
"expo-image": "~2.0.0",
"expo-linking": "~7.0.2",
"expo-notifications": "~0.29.8",
"expo-quick-actions": "^2.0.0",
"expo-router": "~4.0.6",
"expo-status-bar": "~2.0.0",
"expo-system-ui": "~4.0.3",
"expo-updates": "~0.26.7",
"expo-web-browser": "~14.0.1",
"jest": "^29.3.1",
"jest-expo": "~52.0.2",
"lottie-react-native": "7.1.0",
"react": "18.3.1",
"react-compiler-runtime": "^19.0.0-beta-a7bf2bd-20241110",
"react-native": "0.76.2",
"react-native-bootsplash": "^6.3.0",
"react-native-dynamic-app-icon": "^1.1.0",
"react-native-gesture-handler": "~2.20.2",
"react-native-reanimated": "~3.16.1",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "^4.0.0",
"use-latest-callback": "0.2.1",
"zustand": "^4.5.2"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@types/jest": "^29.5.12",
"@types/react": "~18.3.12",
"eslint": "^8.57.0",
"eslint-config-expo": "~8.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"patch-package": "^8.0.0",
"prettier": "^3.2.5",
"typescript": "~5.3.3"
},
"jest": {
"preset": "jest-expo",
"transformIgnorePatterns": [
"node_modules/(?!((jest-)?react-native|@react-native(-community)?)|expo(nent)?|@expo(nent)?/.*|@expo-google-fonts/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|react-native-svg)"
]
}
}