forked from pinballmap/pbm-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.72 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.72 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
{
"name": "pbm-react",
"version": "0.1.0",
"private": true,
"dependencies": {
"@react-native-async-storage/async-storage": "2.2.0",
"@react-native-vector-icons/entypo": "^13.1.2",
"@react-native-vector-icons/fontawesome5": "^13.1.2",
"@react-native-vector-icons/fontawesome6": "^13.1.2",
"@react-native-vector-icons/ionicons": "^13.1.2",
"@react-native-vector-icons/material-design-icons": "^13.1.2",
"@react-native-vector-icons/material-icons": "^13.1.2",
"@react-navigation/bottom-tabs": "^7.16.2",
"@react-navigation/drawer": "^7.10.3",
"@react-navigation/elements": "^2.9.19",
"@react-navigation/native": "^7.2.5",
"@react-navigation/stack": "^7.9.3",
"@redux-devtools/extension": "^3.3.0",
"@rnmapbox/maps": "10.3.2",
"@sentry/react-native": "~7.11.0",
"@shopify/flash-list": "2.0.2",
"eslint-plugin-react-native": "^4.0.0",
"expo": "57.0.7",
"expo-application": "57.0.2",
"expo-asset": "57.0.6",
"expo-checkbox": "57.0.0",
"expo-clipboard": "57.0.1",
"expo-constants": "57.0.6",
"expo-dev-client": "57.0.7",
"expo-device": "57.0.1",
"expo-file-system": "57.0.1",
"expo-font": "57.0.1",
"expo-image": "57.0.1",
"expo-image-manipulator": "57.0.5",
"expo-image-picker": "57.0.5",
"expo-location": "57.0.5",
"expo-screen-orientation": "57.0.1",
"expo-splash-screen": "57.0.4",
"expo-status-bar": "57.0.1",
"expo-updates": "57.0.8",
"expo-web-browser": "57.0.1",
"lottie-react-native": "~7.3.8",
"prop-types": "^15.8.1",
"react": "19.2.3",
"react-native": "0.86.0",
"react-native-gesture-handler": "~2.32.0",
"react-native-google-places-autocomplete": "2.5.1",
"react-native-keyboard-controller": "1.21.9",
"react-native-open-maps": "~0.4.3",
"react-native-reanimated": "4.5.0",
"react-native-safe-area-context": "~5.7.0",
"react-native-screens": "4.25.2",
"react-native-worklets": "0.10.0",
"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/eslint-parser": "^7.25.9",
"@types/react": "~19.2.14",
"babel-preset-expo": "~57.0.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",
"prettier": "3.6.2",
"typescript": "~6.0.3"
},
"scripts": {
"start": "expo start -c",
"lint": "eslint \"**/*.js\"",
"debug": "open 'rndebugger://set-debugger-loc?host=localhost&port=19001'",
"prepare": "husky install"
},
"lint-staged": {
"*.js": "eslint --fix",
"*.{js,css,md}": "prettier --write"
}
}