├── .dooboo └── expo ├── .easignore ├── .env.sample ├── .eslintignore ├── .eslintrc.js ├── .firebaserc ├── .github └── workflows │ ├── ci.yml │ ├── deploy-pr.yml │ └── deploy.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .prettierrc.js ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── README.md ├── __mocks__ ├── @react-native-google-signin │ └── google-signin.ts ├── @supabase │ └── supabase-js.ts ├── expo-asset.ts └── sentry-expo.ts ├── app.config.ts ├── app ├── (auth) │ ├── _layout.tsx │ ├── intro.tsx │ ├── privacyandpolicy.tsx │ └── termsofservice.tsx ├── (home) │ ├── (tabs) │ │ ├── _layout.tsx │ │ ├── index.tsx │ │ └── my.tsx │ ├── _layout.tsx │ ├── onboarding.tsx │ ├── picture.tsx │ ├── post │ │ ├── [id] │ │ │ ├── index.tsx │ │ │ ├── replies.tsx │ │ │ └── update.tsx │ │ └── write.tsx │ ├── settings │ │ ├── block-users.tsx │ │ ├── index.tsx │ │ ├── login-info.tsx │ │ └── profile-update.tsx │ └── user │ │ └── [displayName].tsx ├── [...unmatched].tsx └── _layout.tsx ├── assets ├── favicon.png ├── icon.png ├── icons │ ├── github.png │ ├── github@2x.png │ ├── github@3x.png │ ├── google.png │ ├── google@2x.png │ ├── google@3x.png │ ├── tier_bronze.png │ ├── tier_bronze@2x.png │ ├── tier_bronze@3x.png │ ├── tier_challenger.png │ ├── tier_challenger@2x.png │ ├── tier_challenger@3x.png │ ├── tier_diamond.png │ ├── tier_diamond@2x.png │ ├── tier_diamond@3x.png │ ├── tier_gold.png │ ├── tier_gold@2x.png │ ├── tier_gold@3x.png │ ├── tier_iron.png │ ├── tier_iron@2x.png │ ├── tier_iron@3x.png │ ├── tier_master.png │ ├── tier_master@2x.png │ ├── tier_master@3x.png │ ├── tier_platinum.png │ ├── tier_platinum@2x.png │ ├── tier_platinum@3x.png │ ├── tier_silver.png │ ├── tier_silver@2x.png │ └── tier_silver@3x.png ├── images │ ├── crossplatforms.png │ ├── crossplatforms@2x.png │ ├── crossplatforms@3x.png │ ├── spider_web_d.png │ ├── spider_web_d@2x.png │ ├── spider_web_d@3x.png │ ├── spider_web_l.png │ ├── spider_web_l@2x.png │ └── spider_web_l@3x.png ├── langs │ ├── en.json │ ├── ios │ │ └── ko.json │ └── ko.json ├── lotties │ └── cpk_loading.json ├── notification_icon.png └── splash.png ├── babel.config.js ├── bun.lockb ├── commitlint.config.cjs ├── config.ts ├── custom-syntax-validator.ts ├── eas.json ├── environment.d.ts ├── firebase.json ├── jest.config.ts ├── metro.config.js ├── package.json ├── prisma ├── migrations │ ├── 20240807093526_init │ │ └── migration.sql │ ├── 20240807170730_like_unique │ │ └── migration.sql │ ├── 20240807171555_like_unique │ │ └── migration.sql │ ├── 20240918131843_user_clerk_id │ │ └── migration.sql │ ├── 20240918134911_provider_data_type │ │ └── migration.sql │ ├── 20240918135325_remove_email_unique │ │ └── migration.sql │ └── migration_lock.toml └── schema.prisma ├── public └── .well-known │ ├── apple-app-site-association │ └── assetlinks.json ├── src ├── STRINGS.ts ├── apis │ ├── blockQueries.ts │ ├── followQueries.ts │ ├── githubStatsQueries.ts │ ├── likeQueries.ts │ ├── notifications.ts │ ├── postQueries.ts │ ├── profileQueries.ts │ ├── pushTokenQueries.ts │ ├── replyQueries.ts │ ├── reportQueries.ts │ ├── sample.ts │ └── slackQueries.ts ├── components │ ├── fragments │ │ ├── DoobooStats.tsx │ │ └── ProfileImageInput.tsx │ ├── modals │ │ ├── ReportModal.tsx │ │ └── common │ │ │ └── InputModal.tsx │ ├── svgs │ │ ├── SvgMask.tsx │ │ ├── SvgStatsDooboo.tsx │ │ ├── SvgStatsEarth.tsx │ │ ├── SvgStatsFire.tsx │ │ ├── SvgStatsGold.tsx │ │ ├── SvgStatsPerson.tsx │ │ ├── SvgStatsTree.tsx │ │ └── SvgStatsWater.tsx │ └── uis │ │ ├── ButtonSocialSignIn │ │ ├── ButtonSocialSignInView.tsx │ │ └── index.tsx │ │ ├── ControlItem.tsx │ │ ├── CustomLoadingIndicator.tsx │ │ ├── CustomScrollView.tsx │ │ ├── FallbackComponent.tsx │ │ ├── ImageCarousel.tsx │ │ ├── ImageZoomView.tsx │ │ ├── ListEmptyItem.tsx │ │ ├── LottieView.tsx │ │ ├── LottieView.web.tsx │ │ ├── MultiUploadImageInput.tsx │ │ ├── NotFound.tsx │ │ ├── PostListItem.tsx │ │ ├── ReplyInput.tsx │ │ ├── ReplyItem.tsx │ │ ├── Scouter │ │ ├── CombatDetails.tsx │ │ ├── Score.tsx │ │ ├── StatsChart.tsx │ │ └── index.tsx │ │ ├── UserImage.tsx │ │ ├── UserListItem.tsx │ │ └── Wrapper.tsx ├── hooks │ ├── useActionSheet.tsx │ ├── useAppState.tsx │ ├── useSupabase.tsx │ └── useWarmUpBrowser.tsx ├── icons.ts ├── modules │ └── WebView.tsx ├── providers │ ├── AppLogicProvider.tsx │ └── index.tsx ├── recoil │ ├── atoms.ts │ └── selectors.ts ├── styled.d.ts ├── supabase │ └── index.ts ├── theme.ts ├── types │ ├── github-stats.ts │ ├── index.ts │ └── supabase.ts └── utils │ ├── alert.ts │ ├── cache.ts │ ├── common.ts │ ├── constants.ts │ ├── createCtx.tsx │ ├── date.ts │ ├── error.ts │ ├── imagePicker.ts │ ├── notifications.ts │ └── urlParser.ts ├── test ├── app │ └── index.test.tsx ├── src │ ├── apis │ │ └── sample.test.ts │ ├── providers │ │ └── AppLogicProvider.test.tsx │ └── uis │ │ └── ListEmptyItem.test.tsx ├── testSetup.ts ├── testSetupAfterEnv.ts └── testUtils.tsx ├── tsconfig.json └── yarn.lock /.dooboo/expo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/.dooboo/expo -------------------------------------------------------------------------------- /.easignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/.easignore -------------------------------------------------------------------------------- /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/.env.sample -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/.firebaserc -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/.github/workflows/deploy-pr.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/README.md -------------------------------------------------------------------------------- /__mocks__/@react-native-google-signin/google-signin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/__mocks__/@react-native-google-signin/google-signin.ts -------------------------------------------------------------------------------- /__mocks__/@supabase/supabase-js.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/__mocks__/@supabase/supabase-js.ts -------------------------------------------------------------------------------- /__mocks__/expo-asset.ts: -------------------------------------------------------------------------------- 1 | export default { 2 | loadSingleFontAsync: jest.fn(), 3 | }; 4 | -------------------------------------------------------------------------------- /__mocks__/sentry-expo.ts: -------------------------------------------------------------------------------- 1 | export const Native = { 2 | captureException: jest.fn(), 3 | }; 4 | -------------------------------------------------------------------------------- /app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/app.config.ts -------------------------------------------------------------------------------- /app/(auth)/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/app/(auth)/_layout.tsx -------------------------------------------------------------------------------- /app/(auth)/intro.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/app/(auth)/intro.tsx -------------------------------------------------------------------------------- /app/(auth)/privacyandpolicy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/app/(auth)/privacyandpolicy.tsx -------------------------------------------------------------------------------- /app/(auth)/termsofservice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/app/(auth)/termsofservice.tsx -------------------------------------------------------------------------------- /app/(home)/(tabs)/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/app/(home)/(tabs)/_layout.tsx -------------------------------------------------------------------------------- /app/(home)/(tabs)/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/app/(home)/(tabs)/index.tsx -------------------------------------------------------------------------------- /app/(home)/(tabs)/my.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/app/(home)/(tabs)/my.tsx -------------------------------------------------------------------------------- /app/(home)/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/app/(home)/_layout.tsx -------------------------------------------------------------------------------- /app/(home)/onboarding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/app/(home)/onboarding.tsx -------------------------------------------------------------------------------- /app/(home)/picture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/app/(home)/picture.tsx -------------------------------------------------------------------------------- /app/(home)/post/[id]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/app/(home)/post/[id]/index.tsx -------------------------------------------------------------------------------- /app/(home)/post/[id]/replies.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/app/(home)/post/[id]/replies.tsx -------------------------------------------------------------------------------- /app/(home)/post/[id]/update.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/app/(home)/post/[id]/update.tsx -------------------------------------------------------------------------------- /app/(home)/post/write.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/app/(home)/post/write.tsx -------------------------------------------------------------------------------- /app/(home)/settings/block-users.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/app/(home)/settings/block-users.tsx -------------------------------------------------------------------------------- /app/(home)/settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/app/(home)/settings/index.tsx -------------------------------------------------------------------------------- /app/(home)/settings/login-info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/app/(home)/settings/login-info.tsx -------------------------------------------------------------------------------- /app/(home)/settings/profile-update.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/app/(home)/settings/profile-update.tsx -------------------------------------------------------------------------------- /app/(home)/user/[displayName].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/app/(home)/user/[displayName].tsx -------------------------------------------------------------------------------- /app/[...unmatched].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/app/[...unmatched].tsx -------------------------------------------------------------------------------- /app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/app/_layout.tsx -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/icons/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/icons/github.png -------------------------------------------------------------------------------- /assets/icons/github@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/icons/github@2x.png -------------------------------------------------------------------------------- /assets/icons/github@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/icons/github@3x.png -------------------------------------------------------------------------------- /assets/icons/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/icons/google.png -------------------------------------------------------------------------------- /assets/icons/google@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/icons/google@2x.png -------------------------------------------------------------------------------- /assets/icons/google@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/icons/google@3x.png -------------------------------------------------------------------------------- /assets/icons/tier_bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/icons/tier_bronze.png -------------------------------------------------------------------------------- /assets/icons/tier_bronze@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/icons/tier_bronze@2x.png -------------------------------------------------------------------------------- /assets/icons/tier_bronze@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/icons/tier_bronze@3x.png -------------------------------------------------------------------------------- /assets/icons/tier_challenger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/icons/tier_challenger.png -------------------------------------------------------------------------------- /assets/icons/tier_challenger@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/icons/tier_challenger@2x.png -------------------------------------------------------------------------------- /assets/icons/tier_challenger@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/icons/tier_challenger@3x.png -------------------------------------------------------------------------------- /assets/icons/tier_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/icons/tier_diamond.png -------------------------------------------------------------------------------- /assets/icons/tier_diamond@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/icons/tier_diamond@2x.png -------------------------------------------------------------------------------- /assets/icons/tier_diamond@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/icons/tier_diamond@3x.png -------------------------------------------------------------------------------- /assets/icons/tier_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/icons/tier_gold.png -------------------------------------------------------------------------------- /assets/icons/tier_gold@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/icons/tier_gold@2x.png -------------------------------------------------------------------------------- /assets/icons/tier_gold@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/icons/tier_gold@3x.png -------------------------------------------------------------------------------- /assets/icons/tier_iron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/icons/tier_iron.png -------------------------------------------------------------------------------- /assets/icons/tier_iron@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/icons/tier_iron@2x.png -------------------------------------------------------------------------------- /assets/icons/tier_iron@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/icons/tier_iron@3x.png -------------------------------------------------------------------------------- /assets/icons/tier_master.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/icons/tier_master.png -------------------------------------------------------------------------------- /assets/icons/tier_master@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/icons/tier_master@2x.png -------------------------------------------------------------------------------- /assets/icons/tier_master@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/icons/tier_master@3x.png -------------------------------------------------------------------------------- /assets/icons/tier_platinum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/icons/tier_platinum.png -------------------------------------------------------------------------------- /assets/icons/tier_platinum@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/icons/tier_platinum@2x.png -------------------------------------------------------------------------------- /assets/icons/tier_platinum@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/icons/tier_platinum@3x.png -------------------------------------------------------------------------------- /assets/icons/tier_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/icons/tier_silver.png -------------------------------------------------------------------------------- /assets/icons/tier_silver@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/icons/tier_silver@2x.png -------------------------------------------------------------------------------- /assets/icons/tier_silver@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/icons/tier_silver@3x.png -------------------------------------------------------------------------------- /assets/images/crossplatforms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/images/crossplatforms.png -------------------------------------------------------------------------------- /assets/images/crossplatforms@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/images/crossplatforms@2x.png -------------------------------------------------------------------------------- /assets/images/crossplatforms@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/images/crossplatforms@3x.png -------------------------------------------------------------------------------- /assets/images/spider_web_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/images/spider_web_d.png -------------------------------------------------------------------------------- /assets/images/spider_web_d@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/images/spider_web_d@2x.png -------------------------------------------------------------------------------- /assets/images/spider_web_d@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/images/spider_web_d@3x.png -------------------------------------------------------------------------------- /assets/images/spider_web_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/images/spider_web_l.png -------------------------------------------------------------------------------- /assets/images/spider_web_l@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/images/spider_web_l@2x.png -------------------------------------------------------------------------------- /assets/images/spider_web_l@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/images/spider_web_l@3x.png -------------------------------------------------------------------------------- /assets/langs/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/langs/en.json -------------------------------------------------------------------------------- /assets/langs/ios/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/langs/ios/ko.json -------------------------------------------------------------------------------- /assets/langs/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/langs/ko.json -------------------------------------------------------------------------------- /assets/lotties/cpk_loading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/lotties/cpk_loading.json -------------------------------------------------------------------------------- /assets/notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/notification_icon.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/babel.config.js -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/bun.lockb -------------------------------------------------------------------------------- /commitlint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/commitlint.config.cjs -------------------------------------------------------------------------------- /config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/config.ts -------------------------------------------------------------------------------- /custom-syntax-validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/custom-syntax-validator.ts -------------------------------------------------------------------------------- /eas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/eas.json -------------------------------------------------------------------------------- /environment.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/environment.d.ts -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/firebase.json -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/jest.config.ts -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/package.json -------------------------------------------------------------------------------- /prisma/migrations/20240807093526_init/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/prisma/migrations/20240807093526_init/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20240807170730_like_unique/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/prisma/migrations/20240807170730_like_unique/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20240807171555_like_unique/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/prisma/migrations/20240807171555_like_unique/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20240918131843_user_clerk_id/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/prisma/migrations/20240918131843_user_clerk_id/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20240918134911_provider_data_type/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/prisma/migrations/20240918134911_provider_data_type/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20240918135325_remove_email_unique/migration.sql: -------------------------------------------------------------------------------- 1 | -- DropIndex 2 | DROP INDEX "users_email_key"; 3 | -------------------------------------------------------------------------------- /prisma/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/prisma/migrations/migration_lock.toml -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/.well-known/apple-app-site-association: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/public/.well-known/apple-app-site-association -------------------------------------------------------------------------------- /public/.well-known/assetlinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/public/.well-known/assetlinks.json -------------------------------------------------------------------------------- /src/STRINGS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/STRINGS.ts -------------------------------------------------------------------------------- /src/apis/blockQueries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/apis/blockQueries.ts -------------------------------------------------------------------------------- /src/apis/followQueries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/apis/followQueries.ts -------------------------------------------------------------------------------- /src/apis/githubStatsQueries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/apis/githubStatsQueries.ts -------------------------------------------------------------------------------- /src/apis/likeQueries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/apis/likeQueries.ts -------------------------------------------------------------------------------- /src/apis/notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/apis/notifications.ts -------------------------------------------------------------------------------- /src/apis/postQueries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/apis/postQueries.ts -------------------------------------------------------------------------------- /src/apis/profileQueries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/apis/profileQueries.ts -------------------------------------------------------------------------------- /src/apis/pushTokenQueries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/apis/pushTokenQueries.ts -------------------------------------------------------------------------------- /src/apis/replyQueries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/apis/replyQueries.ts -------------------------------------------------------------------------------- /src/apis/reportQueries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/apis/reportQueries.ts -------------------------------------------------------------------------------- /src/apis/sample.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/apis/sample.ts -------------------------------------------------------------------------------- /src/apis/slackQueries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/apis/slackQueries.ts -------------------------------------------------------------------------------- /src/components/fragments/DoobooStats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/components/fragments/DoobooStats.tsx -------------------------------------------------------------------------------- /src/components/fragments/ProfileImageInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/components/fragments/ProfileImageInput.tsx -------------------------------------------------------------------------------- /src/components/modals/ReportModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/components/modals/ReportModal.tsx -------------------------------------------------------------------------------- /src/components/modals/common/InputModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/components/modals/common/InputModal.tsx -------------------------------------------------------------------------------- /src/components/svgs/SvgMask.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/components/svgs/SvgMask.tsx -------------------------------------------------------------------------------- /src/components/svgs/SvgStatsDooboo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/components/svgs/SvgStatsDooboo.tsx -------------------------------------------------------------------------------- /src/components/svgs/SvgStatsEarth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/components/svgs/SvgStatsEarth.tsx -------------------------------------------------------------------------------- /src/components/svgs/SvgStatsFire.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/components/svgs/SvgStatsFire.tsx -------------------------------------------------------------------------------- /src/components/svgs/SvgStatsGold.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/components/svgs/SvgStatsGold.tsx -------------------------------------------------------------------------------- /src/components/svgs/SvgStatsPerson.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/components/svgs/SvgStatsPerson.tsx -------------------------------------------------------------------------------- /src/components/svgs/SvgStatsTree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/components/svgs/SvgStatsTree.tsx -------------------------------------------------------------------------------- /src/components/svgs/SvgStatsWater.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/components/svgs/SvgStatsWater.tsx -------------------------------------------------------------------------------- /src/components/uis/ButtonSocialSignIn/ButtonSocialSignInView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/components/uis/ButtonSocialSignIn/ButtonSocialSignInView.tsx -------------------------------------------------------------------------------- /src/components/uis/ButtonSocialSignIn/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/components/uis/ButtonSocialSignIn/index.tsx -------------------------------------------------------------------------------- /src/components/uis/ControlItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/components/uis/ControlItem.tsx -------------------------------------------------------------------------------- /src/components/uis/CustomLoadingIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/components/uis/CustomLoadingIndicator.tsx -------------------------------------------------------------------------------- /src/components/uis/CustomScrollView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/components/uis/CustomScrollView.tsx -------------------------------------------------------------------------------- /src/components/uis/FallbackComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/components/uis/FallbackComponent.tsx -------------------------------------------------------------------------------- /src/components/uis/ImageCarousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/components/uis/ImageCarousel.tsx -------------------------------------------------------------------------------- /src/components/uis/ImageZoomView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/components/uis/ImageZoomView.tsx -------------------------------------------------------------------------------- /src/components/uis/ListEmptyItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/components/uis/ListEmptyItem.tsx -------------------------------------------------------------------------------- /src/components/uis/LottieView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/components/uis/LottieView.tsx -------------------------------------------------------------------------------- /src/components/uis/LottieView.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/components/uis/LottieView.web.tsx -------------------------------------------------------------------------------- /src/components/uis/MultiUploadImageInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/components/uis/MultiUploadImageInput.tsx -------------------------------------------------------------------------------- /src/components/uis/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/components/uis/NotFound.tsx -------------------------------------------------------------------------------- /src/components/uis/PostListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/components/uis/PostListItem.tsx -------------------------------------------------------------------------------- /src/components/uis/ReplyInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/components/uis/ReplyInput.tsx -------------------------------------------------------------------------------- /src/components/uis/ReplyItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/components/uis/ReplyItem.tsx -------------------------------------------------------------------------------- /src/components/uis/Scouter/CombatDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/components/uis/Scouter/CombatDetails.tsx -------------------------------------------------------------------------------- /src/components/uis/Scouter/Score.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/components/uis/Scouter/Score.tsx -------------------------------------------------------------------------------- /src/components/uis/Scouter/StatsChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/components/uis/Scouter/StatsChart.tsx -------------------------------------------------------------------------------- /src/components/uis/Scouter/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/components/uis/Scouter/index.tsx -------------------------------------------------------------------------------- /src/components/uis/UserImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/components/uis/UserImage.tsx -------------------------------------------------------------------------------- /src/components/uis/UserListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/components/uis/UserListItem.tsx -------------------------------------------------------------------------------- /src/components/uis/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/components/uis/Wrapper.tsx -------------------------------------------------------------------------------- /src/hooks/useActionSheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/hooks/useActionSheet.tsx -------------------------------------------------------------------------------- /src/hooks/useAppState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/hooks/useAppState.tsx -------------------------------------------------------------------------------- /src/hooks/useSupabase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/hooks/useSupabase.tsx -------------------------------------------------------------------------------- /src/hooks/useWarmUpBrowser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/hooks/useWarmUpBrowser.tsx -------------------------------------------------------------------------------- /src/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/icons.ts -------------------------------------------------------------------------------- /src/modules/WebView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/modules/WebView.tsx -------------------------------------------------------------------------------- /src/providers/AppLogicProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/providers/AppLogicProvider.tsx -------------------------------------------------------------------------------- /src/providers/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/providers/index.tsx -------------------------------------------------------------------------------- /src/recoil/atoms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/recoil/atoms.ts -------------------------------------------------------------------------------- /src/recoil/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/recoil/selectors.ts -------------------------------------------------------------------------------- /src/styled.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/styled.d.ts -------------------------------------------------------------------------------- /src/supabase/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/supabase/index.ts -------------------------------------------------------------------------------- /src/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/theme.ts -------------------------------------------------------------------------------- /src/types/github-stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/types/github-stats.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/types/supabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/types/supabase.ts -------------------------------------------------------------------------------- /src/utils/alert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/utils/alert.ts -------------------------------------------------------------------------------- /src/utils/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/utils/cache.ts -------------------------------------------------------------------------------- /src/utils/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/utils/common.ts -------------------------------------------------------------------------------- /src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/utils/constants.ts -------------------------------------------------------------------------------- /src/utils/createCtx.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/utils/createCtx.tsx -------------------------------------------------------------------------------- /src/utils/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/utils/date.ts -------------------------------------------------------------------------------- /src/utils/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/utils/error.ts -------------------------------------------------------------------------------- /src/utils/imagePicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/utils/imagePicker.ts -------------------------------------------------------------------------------- /src/utils/notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/utils/notifications.ts -------------------------------------------------------------------------------- /src/utils/urlParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/src/utils/urlParser.ts -------------------------------------------------------------------------------- /test/app/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/test/app/index.test.tsx -------------------------------------------------------------------------------- /test/src/apis/sample.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/test/src/apis/sample.test.ts -------------------------------------------------------------------------------- /test/src/providers/AppLogicProvider.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/test/src/providers/AppLogicProvider.test.tsx -------------------------------------------------------------------------------- /test/src/uis/ListEmptyItem.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/test/src/uis/ListEmptyItem.test.tsx -------------------------------------------------------------------------------- /test/testSetup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/test/testSetup.ts -------------------------------------------------------------------------------- /test/testSetupAfterEnv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/test/testSetupAfterEnv.ts -------------------------------------------------------------------------------- /test/testUtils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/test/testUtils.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplatformkorea/cpk/HEAD/yarn.lock --------------------------------------------------------------------------------