-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
98 lines (98 loc) · 3.77 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
97
98
{
"name": "MyApp",
"version": "0.0.1",
"private": true,
"typings": "types.d.ts",
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest --detectOpenHandles",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"bundle": "react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res",
"clean": "rm -rf $TMPDIR/react-* && watchman watch-del-all && npm cache clean --force",
"clean:android": "cd android && ./gradlew clean",
"clean:ios": "cd ios && pod cache clean --all;rm -rf ~/Library/Caches/CocoaPods; rm -rf Pods; rm -rf ~/Library/Developer/Xcode/DerivedData/*; pod deintegrate; pod setup; pod install;"
},
"dependencies": {
"@nozbe/watermelondb": "0.23.0",
"@nozbe/with-observables": "1.4.0",
"@react-native-community/hooks": "2.6.0",
"@react-native-community/masked-view": "0.1.11",
"@react-native-community/netinfo": "5.9.10",
"axios": "0.21.1",
"bugsnag-react-native": "2.23.10",
"lodash": "4.17.21",
"lottie-ios": "3.2.3",
"lottie-react-native": "4.0.3",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-native": "0.64.2",
"react-native-animatable": "1.3.3",
"react-native-device-info": "7.3.1",
"react-native-elements": "3.4.2",
"react-native-exception-handler": "2.10.10",
"react-native-gesture-handler": "1.10.3",
"react-native-image-pan-zoom": "2.1.12",
"react-native-inappbrowser-reborn": "3.6.3",
"react-native-linear-gradient": "2.5.6",
"react-native-modalize": "2.0.8",
"react-native-parallax-header": "1.1.4",
"react-native-permissions": "3.0.5",
"react-native-reanimated": "1.13.3",
"react-native-responsive-ui": "2.1.5",
"react-native-restart": "0.0.22",
"react-native-safe-area-context": "3.3.0",
"react-native-scalable-image": "1.1.0",
"react-native-screens": "2.18.1",
"react-native-shared-element": "0.8.1",
"react-native-svg": "12.1.1",
"react-native-vector-icons": "8.1.0",
"react-native-view-overflow": "0.0.5",
"react-navigation": "4.4.4",
"react-navigation-animated-switch": "0.6.4",
"react-navigation-drawer": "2.7.1",
"react-navigation-shared-element": "2.3.1",
"react-navigation-stack": "2.10.4"
},
"devDependencies": {
"@babel/core": "7.15.0",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@babel/plugin-proposal-decorators": "7.14.5",
"@babel/plugin-proposal-object-rest-spread": "7.14.7",
"@babel/plugin-transform-flow-strip-types": "7.14.5",
"@babel/runtime": "7.15.3",
"@react-native-community/eslint-config": "3.0.0",
"@types/enzyme": "3.10.9",
"@types/jest": "27.0.1",
"@types/jsdom": "16.2.13",
"@types/lodash": "4.14.172",
"@types/react-native": "0.64.13",
"@types/react-native-vector-icons": "6.4.8",
"@types/react-test-renderer": "17.0.1",
"@typescript-eslint/eslint-plugin": "4.29.2",
"@typescript-eslint/parser": "4.29.2",
"@wojtekmaj/enzyme-adapter-react-17": "0.6.3",
"babel-jest": "27.0.6",
"enzyme": "3.11.0",
"eslint": "7.32.0",
"eslint-plugin-react": "7.24.0",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-react-native": "3.11.0",
"jest": "27.0.6",
"jest-environment-jsdom": "27.1.0",
"jest-enzyme": "7.1.2",
"jest-fetch-mock": "3.0.3",
"jest-mock-axios": "4.4.0",
"metro-react-native-babel-preset": "0.66.2",
"prettier": "2.3.2",
"react-native-testing-library": "6.0.0",
"react-test-renderer": "17.0.2",
"ts-jest": "27.0.5",
"typescript": "3.9.10"
},
"resolutions": {
"react": "17.0.2",
"react-native/@jest/create-cache-key-function": "^27.0.2"
}
}