-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
81 lines (81 loc) · 2.39 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
{
"name": "pbm-react",
"version": "0.1.0",
"private": true,
"dependencies": {
"@react-native-async-storage/async-storage": "1.23.1",
"@react-navigation/bottom-tabs": "^6.6.1",
"@react-navigation/drawer": "^6.7.2",
"@react-navigation/elements": "^1.3.31",
"@react-navigation/native": "^6.1.18",
"@react-navigation/stack": "^6.4.1",
"@redux-devtools/extension": "^3.3.0",
"@rneui/base": "^4.0.0-rc.6",
"@rneui/themed": "^4.0.0-rc.6",
"@rnmapbox/maps": "^10.1.33",
"@sentry/react-native": "~6.3.0",
"@shopify/flash-list": "1.7.1",
"enzyme-to-json": "^3.3.4",
"eslint-plugin-react-native": "^4.0.0",
"expo": "^52.0.0",
"expo-application": "~6.0.1",
"expo-constants": "~17.0.3",
"expo-dev-client": "~5.0.6",
"expo-device": "~7.0.1",
"expo-font": "~13.0.1",
"expo-image": "~2.0.3",
"expo-location": "~18.0.4",
"expo-screen-orientation": "~8.0.1",
"expo-splash-screen": "~0.29.18",
"expo-status-bar": "~2.0.0",
"expo-updates": "~0.26.10",
"expo-web-browser": "~14.0.1",
"intl": "^1.2.5",
"lottie-react-native": "7.1.0",
"moment": "^2.22.2",
"react": "18.3.1",
"react-geocode": "^0.2.3",
"react-native": "0.76.5",
"react-native-gesture-handler": "~2.20.2",
"react-native-google-places-autocomplete": "2.5.1",
"react-native-open-maps": "0.3.5",
"react-native-reanimated": "~3.16.1",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "~4.1.0",
"react-redux": "^9.1.2",
"redux": "^5.0.1",
"redux-thunk": "^3.1.0",
"reselect": "^4.0.0",
"throttle-debounce": "^2.1.0",
"tslib": "^2.6.2"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"babel-plugin-inline-dotenv": "^1.7.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.37.2",
"eslint-watch": "^8.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.10",
"metro-react-native-babel-preset": "^0.77.0",
"prettier": "3.3.3"
},
"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"
}
}