This repository has been archived by the owner on Mar 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 4.08 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
{
"name": "app",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "adb devices && react-native run-android",
"ios": "react-native run-ios",
"android:release": "adb devices && react-native run-android --variant=release",
"ios:device": "react-native run-ios --device",
"ios:release": "react-native run-ios --configuration Release",
"android:assembleRelease": "cd android && ./gradlew assembleRelease",
"android:bundleRelease": "cd android && ./gradlew bundleRelease",
"codepush": "npm run codepush:android && npm run codepush:ios",
"codepush:android": "appcenter codepush release-react -a xn--h40b273ab7dtvq/shoppingcat-aos -d Production",
"codepush:ios": "appcenter codepush release-react -a xn--h40b273ab7dtvq/shoppingcat-ios -d Production",
"gradlew:clean": "cd android && ./gradlew clean && cd ..",
"clean:node": "sudo rm -rf node_modules && rm package-lock.json",
"clean:android": "sudo rm -rf android/build && sudo rm -rf android/app/build && sudo rm -rf android/.gradle && sudo rm -rf ios/Pods",
"pod": "cd ios && pod install && cd ..",
"pod:clean": "sudo cd ios && rm -rf ~/Library/Caches/CocoaPods &&rm -rf Pods && rm Podfile.lock && rm -rf ~/Library/Developer/Xcode/DerivedData/* && pod deintegrate && pod setup && cd ..",
"ios:build:clean": "cd ios && xcodebuild clean",
"start": "react-native start",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"oss": "license-checker --json --out ./src/assets/oss.json"
},
"dependencies": {
"@apollo/client": "^3.3.15",
"@invertase/react-native-apple-authentication": "^2.1.0",
"@react-native-community/clipboard": "^1.5.1",
"@react-native-community/masked-view": "^0.1.10",
"@react-native-firebase/app": "^11.3.0",
"@react-native-firebase/auth": "^11.3.0",
"@react-native-firebase/messaging": "^11.3.0",
"@react-native-firebase/remote-config": "^11.3.0",
"@react-native-seoul/kakao-login": "^2.10.1",
"@react-navigation/bottom-tabs": "^5.11.2",
"@react-navigation/native": "^5.7.3",
"@react-navigation/stack": "^5.9.0",
"apollo-upload-client": "^14.1.3",
"appcenter": "4.1.0",
"appcenter-analytics": "4.1.0",
"appcenter-crashes": "4.1.0",
"dayjs": "^1.10.4",
"graphql": "^15.3.0",
"iamport-react-native": "^1.6.2",
"query-string": "^7.0.0",
"react": "17.0.1",
"react-native": "0.64.0",
"react-native-code-push": "^7.0.1",
"react-native-daum-postcode": "^1.0.9",
"react-native-device-info": "^7.4.0",
"react-native-fbsdk": "^2.0.0",
"react-native-gesture-handler": "^1.8.0",
"react-native-hyperlink": "0.0.19",
"react-native-image-crop-picker": "^0.35.2",
"react-native-linear-gradient": "^2.5.6",
"react-native-modal": "^11.5.6",
"react-native-rate": "^1.2.4",
"react-native-reanimated": "^1.13.0",
"react-native-safe-area-context": "^3.1.9",
"react-native-screens": "^2.10.1",
"react-native-skeleton-placeholder": "^3.0.2",
"react-native-splash-screen": "^3.2.0",
"react-native-status-bar-height": "^2.6.0",
"react-native-svg": "^12.1.0",
"react-native-tab-view": "^2.15.2",
"react-native-vector-icons": "^7.1.0",
"react-native-webview": "^11.4.2"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"@types/apollo-upload-client": "^14.1.0",
"@types/iamport-react-native": "^1.5.1",
"@types/jest": "^26.0.20",
"@types/react-native": "^0.64.0",
"@types/react-native-fbsdk": "^1.1.0",
"@types/react-native-vector-icons": "^6.4.5",
"@types/react-test-renderer": "^16.9.2",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-jest": "^26.6.3",
"eslint": "7.14.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.64.0",
"react-test-renderer": "17.0.1",
"typescript": "^3.8.3"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}