-
Notifications
You must be signed in to change notification settings - Fork 9
/
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.5.11",
"@react-navigation/drawer": "^6.6.6",
"@react-navigation/elements": "^1.3.21",
"@react-navigation/native": "^6.1.9",
"@react-navigation/stack": "^6.3.20",
"@rneui/base": "^4.0.0-rc.6",
"@rneui/themed": "^4.0.0-rc.6",
"@rnmapbox/maps": "10.1.20",
"@sentry/react-native": "~5.22.0",
"@shopify/flash-list": "1.6.4",
"dotenv": "^10.0.0",
"enzyme-to-json": "^3.3.4",
"eslint-plugin-react-native": "^4.0.0",
"expo": "~51.0.31",
"expo-application": "~5.9.1",
"expo-constants": "~16.0.2",
"expo-dev-client": "~4.0.26",
"expo-device": "~6.0.2",
"expo-font": "~12.0.4",
"expo-location": "~17.0.1",
"expo-screen-orientation": "~7.0.5",
"expo-splash-screen": "~0.27.5",
"expo-status-bar": "~1.12.1",
"expo-updates": "~0.25.25",
"expo-web-browser": "~13.0.3",
"intl": "^1.2.5",
"lottie-react-native": "6.7.0",
"moment": "^2.22.2",
"react": "18.2.0",
"react-geocode": "^0.2.3",
"react-native": "0.74.5",
"react-native-gesture-handler": "~2.16.1",
"react-native-google-places-autocomplete": "2.5.1",
"react-native-open-maps": "0.3.5",
"react-native-reanimated": "~3.10.1",
"react-native-safe-area-context": "4.10.5",
"react-native-screens": "3.31.1",
"react-redux": "^7.1.3",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.5",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"throttle-debounce": "^2.1.0",
"tslib": "^2.6.2"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/eslint-parser": "^7.23.10",
"babel-plugin-inline-dotenv": "^1.7.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.0",
"eslint-watch": "^8.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.2",
"metro-react-native-babel-preset": "^0.76.9",
"prettier": "3.2.5"
},
"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"
}
}