-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
126 lines (126 loc) · 4.65 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "praiser",
"version": "1.1.1",
"private": true,
"scripts": {
"android": "react-native run-android --appIdSuffix debug",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest --testPathIgnorePatterns e2e/*",
"test-e2e-ios": "node ./scripts/test-e2e --ios",
"test-e2e-android": "node ./scripts/test-e2e --android",
"coverage": "jest --testPathIgnorePatterns e2e/* --coverage",
"lint": "eslint index.js $(find src -name '*.ts' -a -not -name '*.d.ts' -o -name '*.tsx')",
"type-check": "tsc --noEmit",
"generate-typings": "node bin/generate-typings.js > src/@types/react-native-dotenv.d.ts"
},
"dependencies": {
"@januswel/object-utilities": "1.0.1",
"@react-native-community/async-storage": "https://github.com/januswel/async-storage.git#add-typings-of-mock",
"@react-native-community/google-signin": "4.0.0",
"@react-native-community/masked-view": "0.1.7",
"@react-native-firebase/analytics": "6.3.4",
"@react-native-firebase/app": "6.3.4",
"@react-native-firebase/auth": "6.3.4",
"@react-native-firebase/firestore": "6.3.4",
"@react-navigation/bottom-tabs": "5.2.1",
"@react-navigation/drawer": "5.3.1",
"@react-navigation/native": "5.1.0",
"@react-navigation/routers": "5.1.1",
"@react-navigation/stack": "5.2.1",
"@react-navigation/tabs": "0.0.0-alpha.12",
"color": "3.1.2",
"react": "16.9.0",
"react-native": "0.61.5",
"react-native-gesture-handler": "1.6.0",
"react-native-get-random-values": "1.3.0",
"react-native-paper": "3.6.0",
"react-native-reanimated": "1.7.0",
"react-native-safe-area-context": "0.7.3",
"react-native-safe-area-view": "1.0.0",
"react-native-screens": "2.3.0",
"react-native-snap-carousel": "3.8.4",
"react-native-svg": "12.0.3",
"react-native-svg-charts": "5.3.0",
"react-native-swipe-list-view": "2.4.0",
"react-native-vector-icons": "6.6.0",
"react-redux": "7.2.0",
"redux": "4.0.5",
"redux-thunk": "2.3.0",
"reselect": "4.0.0",
"uuid": "7.0.2"
},
"devDependencies": {
"@babel/core": "7.8.7",
"@babel/runtime": "7.8.7",
"@react-native-community/eslint-config": "0.0.7",
"@types/color": "3.0.1",
"@types/jest": "25.1.4",
"@types/react": "16.9.23",
"@types/react-native": "0.61.23",
"@types/react-native-snap-carousel": "3.7.4",
"@types/react-native-svg-charts": "5.0.3",
"@types/react-native-vector-icons": "6.4.5",
"@types/react-navigation": "3.4.0",
"@types/react-redux": "7.1.7",
"@types/react-test-renderer": "16.9.2",
"@types/redux-mock-store": "1.0.2",
"@types/uuid": "7.0.2",
"@typescript-eslint/eslint-plugin": "2.24.0",
"@typescript-eslint/parser": "2.24.0",
"babel-jest": "25.1.0",
"detox": "16.0.1",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-jest": "23.8.2",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.19.0",
"jest": "25.1.0",
"js-yaml": "3.13.1",
"metro-react-native-babel-preset": "0.58.0",
"prettier": "1.19.1",
"react-test-renderer": "16.13.0",
"redux-mock-store": "1.5.4",
"typescript": "3.8.3"
},
"jest": {
"preset": "react-native"
},
"detox": {
"configurations": {
"ios.sim.debug": {
"binaryPath": "ios/build/Build/Products/Debug-iphonesimulator/praiser.app",
"build": "xcodebuild -workspace ios/praiser.xcworkspace -scheme praiser -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build",
"type": "ios.simulator",
"device": {
"type": "iPhone 11 Pro"
}
},
"ios.sim.release": {
"binaryPath": "ios/build/Build/Products/Release-iphonesimulator/praiser.app",
"build": "xcodebuild -workspace ios/praiser.xcworkspace -scheme praiser -configuration Release -sdk iphonesimulator -derivedDataPath ios/build",
"type": "ios.simulator",
"device": {
"type": "iPhone 11 Pro"
}
},
"android.emu.debug": {
"binaryPath": "android/app/build/outputs/apk/debug/app-debug.apk",
"build": "cd android && ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug && cd ..",
"type": "android.emulator",
"device": {
"avdName": "Pixel_2_API_28"
}
},
"android.emu.release": {
"binaryPath": "android/app/build/outputs/apk/release/app-release.apk",
"build": "cd android && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release && cd ..",
"type": "android.emulator",
"device": {
"avdName": "Pixel_2_API_28"
}
}
},
"test-runner": "jest"
}
}