This repository has been archived by the owner on Jun 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
125 lines (125 loc) · 5.37 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
{
"name": "dooboo",
"version": "0.0.1",
"description": "boilerplate for react-native by dooboolab!",
"author": "dooboolab-bot <support@dooboolab.com>",
"private": true,
"postinstall": "npx jetify",
"scripts": {
"dev": "react-native start",
"start": "expo start --dev-client",
"tsc": "tsc",
"watch": "tsc -w",
"codecov": "codecov",
"upgrade": "react-native-git-upgrade && npm install --save react-native",
"upgrade:major": "react-native upgrade",
"test": "jest --runInBand",
"start:packager": "node_modules/react-native/packager/packager.sh",
"start:reset": "react-native start --reset-cache",
"web": "expo start --web",
"reset": "watchman watch-del-all; rm -rf /tmp/metro-bundler-cache-*; rm -rf ./android/build; rm -rf ./android/.gradle; rm -rf ./android/app/build; rm -rf ~/Library/Developer/Xcode/DerivedData; rm -rf /tmp/haste-map-react-native-packager-*; rm -rf ./ios/build; jest --clearCache; cd ios; pod install --repo-update; cd ..; npx jetify; cd android; ./gradlew clean; cd ..; react-native start --reset-cache",
"reset:ios": "watchman watch-del-all; rm -rf ~/Library/Caches/CocoaPods; rm -rf Pods; rm -rf /tmp/metro-bundler-cache-*; rm -rf ~/Library/Developer/Xcode/DerivedData; rm -rf /tmp/haste-map-react-native-packager-*; rm -rf ./ios/build; jest --clearCache; cd ios; pod deintegrate; pod setup; pod install --repo-update; cd ..; react-native start --reset-cache",
"android": "react-native run-android",
"android:shake": "adb shell input keyevent 82",
"android:log": "adb logcat '*:S' ReactNative:V ReactNativeJS:V",
"android:apk": "cd android && ./gradlew assembleRelease",
"android:release": "react-native run-android --variant=release",
"ios": "react-native run-ios",
"ios:release": "react-native run-ios --configuration Release",
"ios:devices": "xcrun simctl list devices",
"ios:dooboolab": "react-native run-ios --device 'dooboolab'",
"ios:dooboolab-release": "react-native run-ios --configuration Release --device 'dooboolab'",
"ios:iphone5": "react-native run-ios --simulator='iPhone 5s'",
"ios:iphone7": "react-native run-ios --simulator='iPhone 7'",
"ios:reset": "rm -rf ios/build/ModuleCache && cd ios && rm -rf ~/Library/Caches/CocoaPods Pods ~/Library/Developer/Xcode/DerivedData/*; pod deintegrate; pod setup; pod install --repo-update;",
"lint": "eslint src --ext .ts,.tsx,.js,.jsx",
"build:ios": "react-native bundle --entry-file index.js --platform ios --dev false --bundle-output ios/main.jsbundle --assets-dest ./ios",
"build:android": "react-native bundle --entry-file index.js --platform android --dev false --bundle-output android/main.jsbundle --assets-dest ./android"
},
"dependencies": {
"@emotion/native": "^11.10.0",
"@emotion/react": "^11.10.0",
"@expo/webpack-config": "~0.17.0",
"@jest/types": "^28.1.3",
"@react-native-async-storage/async-storage": "~1.17.7",
"@react-native-community/masked-view": "^0.1.11",
"@react-navigation/core": "^6.2.2",
"@react-navigation/native": "^6.0.11",
"@react-navigation/stack": "^6.2.2",
"dooboo-ui": "^0.1.66",
"expo": "^46.0.0",
"expo-splash-screen": "~0.16.1",
"expo-status-bar": "~1.4.0",
"i18next": "^22.4.9",
"react-i18next": "^11.18.6",
"react-native": "0.69.3",
"react-native-dotenv": "^3.3.1",
"react-native-gesture-handler": "~2.5.0",
"react-native-localize": "^2.2.4",
"react-native-reanimated": "^3.0.0-rc.0",
"react-native-safe-area-context": "4.3.1",
"react-native-screens": "~3.15.0",
"react-native-svg": "12.4.3",
"react-native-vector-icons": "^9.2.0",
"react-native-web": "0.18.7",
"react-responsive": "^8.2.0"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.10",
"@babel/node": "^7.18.10",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@babel/plugin-transform-react-jsx": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.18.9",
"@dooboo/eslint-config": "^1.3.4",
"@emotion/babel-plugin": "^11.10.0",
"@react-native-community/eslint-config": "^3.1.0",
"@testing-library/jest-native": "^4.0.5",
"@testing-library/react-native": "^11.0.0",
"@types/jest": "^28.1.6",
"@types/react": "*",
"@types/react-native": "*",
"@types/react-responsive": "^8.0.5",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"babel-jest": "^28.1.3",
"babel-plugin-inline-dotenv": "^1.7.0",
"babel-preset-react-native": "^4.0.1",
"codecov": "^3.8.3",
"eslint": "8.21.0",
"fb-tiger-hash": "^1.0.0",
"jest": "^28.1.3",
"jest-expo": "^46.0.1",
"jest-fetch-mock": "^3.0.3",
"jetifier": "^2.0.0",
"metro-react-native-babel-preset": "^0.70.3",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.7.1",
"react": "18.0.0",
"react-dom": "^18.0.0",
"react-native-codegen": "^0.71.0",
"react-test-renderer": "18.0.0",
"shelljs": "^0.8.5",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"typescript": "4.8.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"resolutions": {
"@types/react": "17.0.40",
"@types/react-native": "^0.67.6"
}
}