This repository has been archived by the owner on Jun 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
77 lines (77 loc) · 2.46 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
{
"name": "DatingApp",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest --verbose",
"lint": "eslint ."
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-regular-svg-icons": "^5.15.1",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"@fortawesome/react-native-fontawesome": "^0.2.6",
"@react-native-community/datetimepicker": "^3.0.8",
"@react-native-community/slider": "^3.0.3",
"@react-native-firebase/app": "^10.1.0",
"@react-native-firebase/auth": "^10.1.0",
"@react-native-firebase/firestore": "^10.1.0",
"@react-native-firebase/storage": "^10.4.1",
"@react-native-picker/picker": "^1.9.4",
"country-code-lookup": "0.0.18",
"faker": "^5.1.0",
"firebase-admin": "^9.4.2",
"geofire-common": "^5.1.0",
"gps-distance": "0.0.4",
"gravatar": "^1.8.1",
"ngeohash": "^0.6.3",
"react": "^16.13.1",
"react-native": "0.63.3",
"react-native-bcrypt": "^2.4.0",
"react-native-get-location": "^2.0.0",
"react-native-gifted-chat": "^0.16.3",
"react-native-image-crop-picker": "^0.35.2",
"react-native-paper": "^4.4.1",
"react-native-safe-area-context": "^3.1.9",
"react-native-safe-area-view": "^1.1.1",
"react-native-svg": "^12.1.0",
"react-native-svg-transformer": "^0.14.3",
"react-native-uuid-generator": "^6.1.1",
"react-native-vector-icons": "^7.1.0",
"react-router-dom": "^5.1.2",
"react-router-native": "^5.2.0",
"react-singletons": "^1.3.3",
"validator": "^13.5.2"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/runtime": "^7.8.4",
"@react-native-community/eslint-config": "^1.1.0",
"babel-jest": "^25.1.0",
"detox": "^18.2.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^6.5.1",
"jest": "^26.0.1",
"jest-circus": "^26.0.1",
"jest-environment-enzyme": "^7.1.2",
"jest-enzyme": "^7.1.2",
"metro-react-native-babel-preset": "^0.59.0",
"react-dom": "^16.14.0",
"react-test-renderer": "16.13.1"
},
"jest": {
"preset": "react-native",
"transformIgnorePatterns": [
"node_modules/(?!react-native|react-router-native)/"
],
"setupTestFrameworkScriptFile": "jest-enzyme",
"testEnvironment": "enzyme",
"testEnvironmentOptions": {
"enzymeAdapter": "react16"
}
}
}