-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.38 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
{
"name": "boilerplate",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"ios-responsive": "react-native run-ios --simulator='iPhoneX'&& react-native run-ios --simulator='iPhone 6'",
"start": "react-native start",
"dev": "yarn android && yarn ios",
"test": "jest --detectOpenHandles",
"build-and": "cd android && ./gradlew assembleRelease",
"build-ios": "react-native run-ios --configuration Release",
"prettier-fix": "prettier --write **/*.js",
"prettier-check": "prettier --list-different **/*.js",
"lint-fix": "eslint --fix .",
"lint-check": "eslint .",
"rename": "react-native-rename",
"postinstall": "npx jetify",
"clean": "cd android && ./gradlew clean && ./gradlew cleanBuildcache && cd .. && cd ios && rm -rf build/ && xcodebuild clean && watchman watch-del-all && cd ..",
"pod": "cd ios && pod install && cd ..",
"pod-update": "pod --repo-update"
},
"dependencies": {
"@react-native-community/async-storage": "^1.11.0",
"@react-native-community/masked-view": "^0.1.10",
"@react-navigation/bottom-tabs": "^5.9.1",
"@react-navigation/native": "^5.6.1",
"@react-navigation/stack": "^5.6.2",
"axios": "^0.20.0",
"prop-types": "^15.7.2",
"react": "16.11.0",
"react-devtools": "^4.7.0",
"react-native": "0.62.2",
"react-native-animatable": "^1.3.3",
"react-native-fast-image": "^8.3.2",
"react-native-gesture-handler": "^1.6.1",
"react-native-reanimated": "^1.13.1",
"react-native-responsive-screen": "^1.4.1",
"react-native-safe-area-context": "^3.0.7",
"react-native-screens": "^2.9.0",
"react-native-shared-element": "^0.7.0",
"react-native-vector-icons": "^7.1.0",
"react-navigation-shared-element": "^5.0.0-alpha1",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-persist": "^6.0.0",
"redux-saga": "^1.1.3",
"reduxsauce": "^1.1.3",
"styled-components": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/runtime": "^7.10.4",
"@react-native-community/eslint-config": "^2.0.0",
"babel-jest": "^26.1.0",
"eslint": "^7.4.0",
"jest": "^26.1.0",
"metro-react-native-babel-preset": "^0.60.0",
"react-test-renderer": "16.11.0"
},
"jest": {
"preset": "react-native"
}
}