-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.51 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.51 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
{
"name": "pbm-react",
"version": "0.1.0",
"private": true,
"dependencies": {
"@expo/vector-icons": "^15.0.3",
"@legendapp/list": "^2.0.19",
"@react-native-async-storage/async-storage": "2.2.0",
"@react-navigation/bottom-tabs": "^7.4.7",
"@react-navigation/drawer": "^7.5.8",
"@react-navigation/elements": "^2.6.4",
"@react-navigation/native": "^7.1.17",
"@react-navigation/stack": "^7.4.8",
"@redux-devtools/extension": "^3.3.0",
"@rnmapbox/maps": "10.2.10",
"@sentry/react-native": "~7.2.0",
"babel-preset-expo": "~54.0.9",
"enzyme-to-json": "^3.3.4",
"eslint-plugin-react-native": "^4.0.0",
"expo": "~54.0.31",
"expo-application": "~7.0.8",
"expo-asset": "~12.0.12",
"expo-checkbox": "~5.0.8",
"expo-constants": "~18.0.13",
"expo-dev-client": "~6.0.20",
"expo-device": "~8.0.10",
"expo-file-system": "~19.0.21",
"expo-font": "~14.0.10",
"expo-image": "~3.0.11",
"expo-location": "~19.0.8",
"expo-screen-orientation": "~9.0.8",
"expo-splash-screen": "~31.0.13",
"expo-status-bar": "~3.0.9",
"expo-updates": "~29.0.16",
"expo-web-browser": "~15.0.10",
"intl": "^1.2.5",
"lottie-react-native": "~7.3.1",
"moment": "^2.22.2",
"react": "19.1.0",
"react-native": "0.81.5",
"react-native-gesture-handler": "~2.28.0",
"react-native-google-places-autocomplete": "2.5.1",
"react-native-keyboard-controller": "1.18.5",
"react-native-open-maps": "~0.4.3",
"react-native-reanimated": "~4.1.1",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.16.0",
"react-native-worklets": "0.5.1",
"react-redux": "^9.1.2",
"redux": "^5.0.1",
"redux-thunk": "^3.1.0",
"reselect": "^5.1.1",
"throttle-debounce": "^5.0.2",
"tslib": "^2.6.2"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@types/react": "~19.1.10",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.37.2",
"eslint-watch": "^8.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.10",
"prettier": "3.6.2",
"typescript": "~5.9.2"
},
"scripts": {
"start": "expo start -c",
"test": "jest",
"lint": "eslint \"**/*.js\"",
"debug": "open 'rndebugger://set-debugger-loc?host=localhost&port=19001'",
"prepare": "husky install"
},
"jest": {
"preset": "jest-expo",
"setupFiles": [
"./setupJest.js"
]
},
"lint-staged": {
"*.js": "eslint --fix",
"*.{js,css,md}": "prettier --write"
}
}