-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.32 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 3.32 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "gonow",
"main": "expo-router/entry",
"version": "1.0.0",
"scripts": {
"start": "expo start",
"reset-project": "node ./scripts/reset-project.js",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"test": "jest",
"lint": "eslint . --fix"
},
"jest": {
"preset": "jest-expo",
"moduleNameMapper": {
"expo-sqlite": "<rootDir>/__mocks__/expo-sqlite.js",
"react-native-vector-icons/Ionicons": "<rootDir>/__mocks__/ionicons.tsx"
},
"testMatch": [
"**/__tests__/**/*.test.js",
"**/__tests__/**/*.test.ts",
"**/__tests__/**/*.test.jsx",
"**/__tests__/**/*.test.tsx"
]
},
"dependencies": {
"@babel/runtime": "^7.26.7",
"@expo/vector-icons": "^14.0.2",
"@react-native-async-storage/async-storage": "^2.1.2",
"@react-native-community/datetimepicker": "^8.2.0",
"@react-native-picker/picker": "^2.11.0",
"@react-native-vector-icons/common": "^11.0.0",
"@react-navigation/bottom-tabs": "^7.2.0",
"@react-navigation/native": "^7.0.14",
"datetimepicker": "^0.1.39",
"expo": "~52.0.28",
"expo-background-fetch": "~13.0.5",
"expo-blur": "~14.0.3",
"expo-constants": "~17.0.5",
"expo-dev-client": "~5.0.12",
"expo-device": "~7.0.2",
"expo-font": "~13.0.3",
"expo-haptics": "~14.0.1",
"expo-linking": "~7.0.5",
"expo-location": "~18.0.6",
"expo-notifications": "~0.29.13",
"expo-router": "~4.0.17",
"expo-splash-screen": "~0.29.21",
"expo-sqlite": "~15.1.1",
"expo-status-bar": "~2.0.1",
"expo-symbols": "~0.2.1",
"expo-system-ui": "~4.0.7",
"expo-web-browser": "~14.0.2",
"i": "^0.3.7",
"polyline": "^0.2.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-native": "0.76.6",
"react-native-config": "^1.5.5",
"react-native-element-dropdown": "^2.12.4",
"react-native-gesture-handler": "~2.20.2",
"react-native-maps": "^1.20.1",
"react-native-reanimated": "~3.16.1",
"react-native-safe-area-context": "^4.12.0",
"react-native-screens": "~4.4.0",
"react-native-sqlite-storage": "^6.0.1",
"react-native-vector-icons": "^10.2.0",
"react-native-web": "~0.19.13",
"react-native-webview": "13.12.5",
"react-native-wheel-color-picker": "^1.3.1",
"typedoc": "^0.27.7",
"xmldom": "^0.6.0"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.7",
"@babel/preset-env": "^7.26.7",
"@babel/preset-react": "^7.26.3",
"@eslint/js": "^9.20.0",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^13.0.1",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.15",
"@types/react": "~18.3.12",
"@types/react-native-vector-icons": "^6.4.18",
"@types/react-test-renderer": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"eslint": "^9.20.1",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-native": "^5.0.0",
"eslint-plugin-tsdoc": "^0.4.0",
"jest": "^29.7.0",
"jest-expo": "~52.0.3",
"metro-react-native-babel-preset": "^0.77.0",
"react-test-renderer": "18.3.1",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.1"
},
"private": true
}