-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.09 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "tago",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "npx react-native run-android",
"ios": "npx react-native run-ios",
"start": "npx react-native start",
"detox:build:ios-debug": "detox build --configuration ios.sim.debug",
"detox:e2e:ios-debug": "DETOX_CONFIGURATION=ios.sim.debug npx cucumber-js",
"detox:build:android-debug": "detox build --configuration android.emu.debug",
"detox:e2e:android-debug": "DETOX_CONFIGURATION=android.emu.debug npx cucumber-js",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"dependencies": {
"@react-native-firebase/app": "^14.11.1",
"@react-native-firebase/auth": "^14.11.1",
"@react-native-firebase/firestore": "^14.11.1",
"@react-native-firebase/storage": "^14.11.1",
"@react-native-google-signin/google-signin": "^8.0.1",
"@react-native-picker/picker": "^2.4.8",
"@react-navigation/bottom-tabs": "^6.5.2",
"@react-navigation/native": "^6.0.13",
"@react-navigation/native-stack": "^6.9.1",
"d3": "^7.6.1",
"dripsy": "^3.8.1",
"firebase": "^9.13.0",
"formik": "^2.2.9",
"native-base": "^3.4.25",
"npm": "^9.2.0",
"qs": "^6.11.0",
"react": "^18.0.1",
"react-moment": "^1.1.2",
"react-native": "0.70.3",
"react-native-dropdown-picker": "^5.4.3",
"react-native-fast-image": "^8.6.3",
"react-native-fbsdk-next": "^11.1.0",
"react-native-geolocation-service": "^5.3.1",
"react-native-google-places-autocomplete": "^2.5.1",
"react-native-image-picker": "^4.10.0",
"react-native-image-viewing": "^0.2.2",
"react-native-maps": "^1.3.2",
"react-native-maps-directions": "^1.9.0",
"react-native-progress": "^5.0.0",
"react-native-safe-area-context": "^4.4.1",
"react-native-screens": "^3.18.2",
"react-native-status-bar-height": "^2.6.0",
"react-native-svg": "^13.6.0",
"react-native-vector-icons": "^9.2.0",
"simplex-noise": "^4.0.1",
"yup": "^0.32.11",
"zustand": "^4.1.4"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/register": "^7.18.9",
"@babel/runtime": "^7.12.5",
"@cucumber/cucumber": "^8.7.0",
"@react-native-community/eslint-config": "^2.0.0",
"@tsconfig/react-native": "^2.0.2",
"@types/d3": "^7.4.0",
"@types/jest": "^26.0.23",
"@types/react": "^18.0.21",
"@types/react-native": "^0.70.4",
"@types/react-native-vector-icons": "^6.4.12",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"babel-jest": "^26.6.3",
"detox": "^19.12.6",
"eslint": "^7.32.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "0.72.3",
"react-native-dotenv": "^3.4.2",
"react-test-renderer": "18.1.0",
"typescript": "^4.8.3"
},
"resolutions": {
"typescript": "~4.4"
},
"jest": {
"preset": "react-native",
"setupFilesAfterEnv": [
"@testing-library/jest-native/extend-expect"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}