-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.08 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.08 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
{
"name": "client",
"version": "1.0.0",
"main": "expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"test": "jest --verbose",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"format": "npm run lint:fix && npm run prettier:fix"
},
"dependencies": {
"@googlemaps/polyline-codec": "^1.0.28",
"@react-google-maps/api": "^2.20.6",
"@react-navigation/native": "^7.0.2",
"@react-navigation/native-stack": "^7.0.2",
"crypto": "^1.0.1",
"crypto-js": "^4.2.0",
"d3": "^7.9.0",
"deg2rad": "^1.0.0",
"expo": "^52.0.7",
"expo-location": "^18.0.2",
"expo-status-bar": "~2.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-native": "0.76.2",
"react-native-actionsheet": "^2.4.2",
"react-native-chart-kit": "^6.12.0",
"react-native-element-dropdown": "^2.12.4",
"react-native-gesture-handler": "~2.20.2",
"react-native-maps": "1.18.0",
"react-native-picker-select": "^9.3.1",
"react-native-reanimated": "~3.16.1",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "~4.0.0",
"react-native-svg": "15.8.0",
"react-native-websocket": "^1.0.2"
},
"devDependencies": {
"@babel/core": "^7.26.9",
"@babel/preset-env": "^7.26.9",
"@react-native-async-storage/async-storage": "^2.1.2",
"babel-jest": "^29.7.0",
"babel-preset-expo": "^12.0.9",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^4.6.2",
"jest": "^29.7.0",
"jest-expo": "^52.0.4",
"metro-react-native-babel-preset": "^0.77.0",
"prettier": "^3.5.3",
"react-native-dotenv": "^3.4.11"
},
"private": true
}