This repository has been archived by the owner on Oct 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
106 lines (106 loc) · 4.48 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
{
"name": "DoobooIAP",
"version": "0.0.1",
"description": "boilerplate for react-native by dooboolab!",
"author": "hyochan <dooboolab@gmail.com>",
"private": true,
"postinstall": "npx jetify",
"scripts": {
"dev": "node node_modules/react-native/local-cli/cli.js start",
"tsc": "tsc",
"watch": "tsc -w",
"cp:config": "cp .env.sample .env",
"start": "npm run dev",
"codecov": "codecov",
"postinstall": "npx jetify",
"upgrade": "react-native-git-upgrade && npm install --save react-native",
"upgrade:major": "react-native upgrade",
"test": "jest",
"start:packager": "node_modules/react-native/packager/packager.sh",
"start:reset": "node node_modules/react-native/local-cli/cli.js start --reset-cache",
"android": "node node_modules/react-native/local-cli/cli.js 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": "node node_modules/react-native/local-cli/cli.js run-android --variant=release",
"ios": "node node_modules/react-native/local-cli/cli.js run-ios",
"ios:release": "node node_modules/react-native/local-cli/cli.js run-ios --configuration Release",
"ios:devices": "xcrun simctl list devices",
"ios:dooboolab": "node node_modules/react-native/local-cli/cli.js run-ios --device 'dooboolab'",
"ios:dooboolab-release": "node node_modules/react-native/local-cli/cli.js run-ios --configuration Release --device 'dooboolab'",
"ios:iphone5": "node node_modules/react-native/local-cli/cli.js run-ios --simulator='iPhone 5s'",
"ios:iphone7": "node node_modules/react-native/local-cli/cli.js run-ios --simulator='iPhone 7'",
"ios:reset": "rm -rf ios/build/ModuleCache",
"lint": "eslint src --ext .ts,.tsx,.js,.jsx",
"lint:fix": "eslint src --ext .ts,.tsx,.js,.jsx --fix",
"prettier": "prettier --check src/**/**.{ts,tsx,js,jsx}",
"prettier:fix": "prettier --write src/**/**.{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": {
"@dooboo-ui/native": "^0.6.0",
"@dooboo-ui/native-theme": "^0.1.5",
"@react-native-community/masked-view": "^0.1.6",
"@react-navigation/core": "^5.1.6",
"@react-navigation/native": "^5.0.7",
"@react-navigation/stack": "^5.0.8",
"Base64": "^1.1.0",
"firebase": "^7.9.1",
"i18n-js": "^3.5.1",
"react": "16.9.0",
"react-native": "0.61.5",
"react-native-config": "^0.12.0",
"react-native-dark-mode": "^0.2.2",
"react-native-gesture-handler": "^1.6.0",
"react-native-iap": "^4.4.1",
"react-native-localize": "^1.3.3",
"react-native-reanimated": "^1.7.0",
"react-native-safe-area-context": "^0.7.3",
"react-native-screens": "^2.0.0-beta.10",
"react-native-splash-screen": "^3.2.0",
"react-native-webview": "^8.1.2",
"styled-components": "^5.0.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-transform-runtime": "7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@babel/runtime": "^7.8.4",
"@bam.tech/react-native-make": "^1.0.3",
"@dooboo/eslint-config": "^0.3.7",
"@testing-library/jest-native": "^3.1.0",
"@testing-library/react-native": "^5.0.3",
"@types/i18n-js": "^3.0.1",
"@types/jest": "^25.1.3",
"@types/react": "^16.9.22",
"@types/react-native": "^0.61.16",
"@types/react-test-renderer": "^16.9",
"@types/styled-components": "^5.0.0",
"babel-jest": "25.1.0",
"babel-preset-react-native": "^5.0.2",
"codecov": "^3.6.5",
"eslint": "^6.8.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"jest-fetch-mock": "^3.0.1",
"jest-styled-components": "^7.0.0",
"jetifier": "^1.6.5",
"metro-react-native-babel-preset": "^0.58.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"react-dom": "^16.9.0",
"react-test-renderer": "^16.9.0",
"ts-jest": "^25.2.1",
"typescript": "3.8.2"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint:fix && pretty-quick --staged"
}
}
}