-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.51 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.51 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
{
"name": "NewsApi",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "npm run bundle-dev && npx react-native run-android",
"ios": "npm run pod --silent && npx react-native run-ios",
"pod": "cd ios && pod install",
"clean": "rm -rf ios/Output ios/build android/build android/app/build",
"clean-ios": "rm -rf ios/Output ios/build",
"clean-android": "rm -rf android/build android/app/build",
"bundle-dev": "react-native bundle --platform android --dev true --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res",
"bundle-prod": "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",
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"dist-ios": "npm run clean-ios --silent && npm run pod --silent && bundle exec fastlane ios dist",
"dist-android": "npm run clean-android --silent && npm run bundle-prod --silent && bundle exec fastlane android dist"
},
"dependencies": {
"@react-native-community/async-storage": "^1.10.0",
"@react-native-community/masked-view": "^0.1.10",
"@react-navigation/bottom-tabs": "5.4.1",
"@react-navigation/drawer": "^5.7.1",
"@react-navigation/native": "5.2.6",
"@react-navigation/stack": "^5.3.1",
"axios": "0.21.1",
"install": "0.13.0",
"is_js": "0.9.0",
"lodash": "4.17.21",
"npm": "6.14.6",
"react": "16.11.0",
"react-native": "0.62.2",
"react-native-elements": "2.0.0",
"react-native-gesture-handler": "^1.6.1",
"react-native-localization": "^2.1.6",
"react-native-progress": "^4.1.2",
"react-native-reanimated": "^1.8.0",
"react-native-safe-area-context": "^1.0.0",
"react-native-screens": "^2.7.0",
"react-native-simple-toast": "^1.1.2",
"react-native-vector-icons": "6.6.0",
"react-native-webview": "^11.0.0",
"react-redux": "^7.2.0",
"redux": "4.0.5",
"redux-logger": "3.0.6",
"redux-persist": "6.0.0",
"redux-thunk": "2.3.0",
"reduxsauce": "1.1.2"
},
"devDependencies": {
"@babel/core": "7.6.2",
"@babel/runtime": "7.6.2",
"@react-native-community/eslint-config": "0.0.5",
"axios-logger": "^2.3.1",
"babel-jest": "24.9.0",
"eslint": "6.5.1",
"jest": "24.9.0",
"metro-react-native-babel-preset": "0.58.0",
"react-test-renderer": "16.11.0"
},
"jest": {
"preset": "react-native"
}
}