├── .github └── workflows │ ├── backend-cd.yml │ └── backend-ci.yml ├── backend ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── README.md ├── configuration.ts ├── dataSource.ts ├── deploy.sh ├── nest-cli.json ├── package-lock.json ├── package.json ├── setApplication.ts ├── src │ ├── app.controller.ts │ ├── app.module.ts │ ├── app.service.ts │ ├── authentication │ │ ├── authentication.module.ts │ │ └── authentication.service.ts │ ├── common │ │ ├── filters │ │ │ ├── http.exception.filter.ts │ │ │ └── server.error.exception.filter.ts │ │ ├── guard │ │ │ ├── accesstoken.guard.ts │ │ │ ├── authorization.guard.ts │ │ │ ├── duedate.guard.ts │ │ │ └── refreshtoken.guard.ts │ │ ├── pipes │ │ │ └── customValidationPipe.ts │ │ ├── response │ │ │ └── response.dto.ts │ │ └── typeorm │ │ │ ├── typeorm.decorator.ts │ │ │ └── typeorm.module.ts │ ├── custom │ │ ├── customDecorator │ │ │ ├── cookie.decorator.ts │ │ │ └── feed.decorator.ts │ │ ├── customError │ │ │ ├── httpException.ts │ │ │ └── serverError.ts │ │ └── customValidators │ │ │ ├── feedValidate.ts │ │ │ └── nicknameValidate.ts │ ├── entities │ │ ├── Comment.entity.ts │ │ ├── Feed.entity.ts │ │ ├── Image.entity.ts │ │ ├── Like.entity.ts │ │ ├── Posting.entity.ts │ │ ├── User.entity.ts │ │ ├── UserFeedMapping.entity.ts │ │ └── entityInterfaces │ │ │ ├── CommentInterface.ts │ │ │ ├── FeedInterface.ts │ │ │ ├── ImageInterface.ts │ │ │ ├── PostingInterface.ts │ │ │ └── UserInterface.ts │ ├── feed │ │ ├── dto │ │ │ ├── create.feed.dto.ts │ │ │ ├── find.feed.dto.ts │ │ │ ├── info.feed.dto.ts │ │ │ ├── request │ │ │ │ └── feed.scroll.dto.ts │ │ │ └── response │ │ │ │ └── feed.response.dto.ts │ │ ├── feed.controller.ts │ │ ├── feed.module.ts │ │ ├── feed.repository.ts │ │ ├── feed.service.ts │ │ ├── feed.utils.ts │ │ └── user.feed.mapping.repository.ts │ ├── image │ │ ├── dto │ │ │ └── create.image.dto.ts │ │ ├── image.controller.ts │ │ ├── image.module.ts │ │ ├── image.repository.ts │ │ └── image.service.ts │ ├── main.ts │ ├── oauth │ │ ├── dto │ │ │ └── oauth.postform.dto.ts │ │ ├── oauth.module.ts │ │ ├── oauth.service.ts │ │ └── oauth.utils.ts │ ├── posting │ │ ├── decorators │ │ │ └── create.posting.decorator.ts │ │ ├── dto │ │ │ ├── create.posting.dto.ts │ │ │ ├── find.posting.dto.ts │ │ │ ├── looking.posting.dto.ts │ │ │ └── posting.scroll.dto.ts │ │ ├── posting.controller.ts │ │ ├── posting.module.ts │ │ ├── posting.repository.ts │ │ └── posting.service.ts │ └── users │ │ ├── decorators │ │ └── users.decorators.ts │ │ ├── dto │ │ ├── cookie.info.dto.ts │ │ ├── find.user.dto.ts │ │ ├── join.cookie.dto.ts │ │ ├── join.nickname.dto.ts │ │ └── join.request.dto.ts │ │ ├── users.controller.ts │ │ ├── users.facade.ts │ │ ├── users.module.ts │ │ ├── users.repository.ts │ │ └── users.service.ts ├── test │ ├── app.e2e-spec.ts │ ├── guard │ │ └── Duedate.spec.ts │ └── jest-e2e.json ├── tsconfig.build.json ├── tsconfig.json ├── tsconfig.paths.json └── webpack-hmr.config.js ├── frontend ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── README.md ├── craco.config.js ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── react-app-env.d.ts ├── src │ ├── _mixin.scss │ ├── assets │ │ ├── XIcon.svg │ │ ├── arrowIcon.svg │ │ ├── cameraIcon.svg │ │ ├── defaultUserImage.svg │ │ ├── desktopSideImage.svg │ │ ├── downIcon.svg │ │ ├── editIcon.svg │ │ ├── kakaoIcon.svg │ │ ├── logoutIcon.svg │ │ ├── plusIcon.svg │ │ ├── plusPrimaryIcon.svg │ │ ├── questionIcon.svg │ │ ├── shareIcon.svg │ │ ├── splashImage.svg │ │ ├── uploadCameraIcon.svg │ │ ├── warningIcon.svg │ │ └── xoxoIcon.svg │ ├── components │ │ ├── AuthRoute │ │ │ └── index.tsx │ │ ├── FeedRoute │ │ │ └── index.tsx │ │ ├── Header │ │ │ ├── index.tsx │ │ │ └── style.scss │ │ ├── InfoModal │ │ │ ├── index.tsx │ │ │ └── style.scss │ │ ├── Input │ │ │ ├── index.tsx │ │ │ └── style.scss │ │ ├── SigninBackground │ │ │ ├── index.tsx │ │ │ └── style.scss │ │ ├── SigninRoute │ │ │ └── index.tsx │ │ └── Toast │ │ │ ├── index.tsx │ │ │ └── styles.scss │ ├── custom.d.ts │ ├── global.scss │ ├── hooks │ │ ├── useGet.tsx │ │ ├── useInfiniteScroll.tsx │ │ ├── usePatch.tsx │ │ └── usePost.tsx │ ├── index.tsx │ ├── pages │ │ ├── CreateFeed │ │ │ ├── CreateFeedButton │ │ │ │ └── index.tsx │ │ │ ├── GroupMember │ │ │ │ ├── Suggestions.tsx │ │ │ │ └── index.tsx │ │ │ ├── index.tsx │ │ │ ├── style.scss │ │ │ └── types.ts │ │ ├── EditFeed │ │ │ ├── EditFeedButton │ │ │ │ └── index.tsx │ │ │ ├── GroupMember │ │ │ │ ├── Suggestions.tsx │ │ │ │ └── index.tsx │ │ │ ├── index.tsx │ │ │ ├── style.scss │ │ │ └── types.ts │ │ ├── Error │ │ │ ├── index.tsx │ │ │ └── style.scss │ │ ├── Feed │ │ │ ├── FeedPostingList │ │ │ │ ├── Loading │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── style.scss │ │ │ │ ├── ObserverElement │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── style.scss │ │ │ │ ├── index.tsx │ │ │ │ └── style.scss │ │ │ ├── FeedProfile │ │ │ │ ├── index.tsx │ │ │ │ └── style.scss │ │ │ ├── index.tsx │ │ │ └── style.scss │ │ ├── Feeds │ │ │ ├── CreateFeedButton │ │ │ │ └── index.tsx │ │ │ ├── index.tsx │ │ │ └── styles.scss │ │ ├── Info │ │ │ ├── index.tsx │ │ │ └── style.scss │ │ ├── Posting │ │ │ ├── ImageSlider │ │ │ │ ├── ImageCard.tsx │ │ │ │ ├── imageQuery.ts │ │ │ │ ├── index.tsx │ │ │ │ └── types.tsx │ │ │ ├── index.tsx │ │ │ └── styles.scss │ │ ├── SignIn │ │ │ ├── index.tsx │ │ │ └── style.scss │ │ └── Write │ │ │ ├── CreatePostingButton │ │ │ └── index.tsx │ │ │ ├── ImageCards │ │ │ └── index.tsx │ │ │ ├── ThumbnailPreview │ │ │ ├── index.tsx │ │ │ └── style.scss │ │ │ ├── index.tsx │ │ │ ├── style.scss │ │ │ └── types.ts │ ├── types │ │ └── index.tsx │ └── util │ │ ├── canvasToFile │ │ └── index.ts │ │ ├── cropImg │ │ └── index.tsx │ │ ├── fetcher.ts │ │ ├── imageCompress.ts │ │ ├── imageQuery.ts │ │ ├── index.ts │ │ ├── pixelateCanvas │ │ └── index.ts │ │ ├── uploadImage │ │ └── index.ts │ │ └── validation │ │ ├── bool.ts │ │ └── index.ts ├── tsconfig.json └── tsconfig.paths.json └── readme.md /.github/workflows/backend-cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/.github/workflows/backend-cd.yml -------------------------------------------------------------------------------- /.github/workflows/backend-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/.github/workflows/backend-ci.yml -------------------------------------------------------------------------------- /backend/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/.eslintrc.js -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/.prettierrc -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/configuration.ts -------------------------------------------------------------------------------- /backend/dataSource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/dataSource.ts -------------------------------------------------------------------------------- /backend/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/deploy.sh -------------------------------------------------------------------------------- /backend/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/nest-cli.json -------------------------------------------------------------------------------- /backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/package-lock.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/setApplication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/setApplication.ts -------------------------------------------------------------------------------- /backend/src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/app.controller.ts -------------------------------------------------------------------------------- /backend/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/app.module.ts -------------------------------------------------------------------------------- /backend/src/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/app.service.ts -------------------------------------------------------------------------------- /backend/src/authentication/authentication.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/authentication/authentication.module.ts -------------------------------------------------------------------------------- /backend/src/authentication/authentication.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/authentication/authentication.service.ts -------------------------------------------------------------------------------- /backend/src/common/filters/http.exception.filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/common/filters/http.exception.filter.ts -------------------------------------------------------------------------------- /backend/src/common/filters/server.error.exception.filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/common/filters/server.error.exception.filter.ts -------------------------------------------------------------------------------- /backend/src/common/guard/accesstoken.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/common/guard/accesstoken.guard.ts -------------------------------------------------------------------------------- /backend/src/common/guard/authorization.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/common/guard/authorization.guard.ts -------------------------------------------------------------------------------- /backend/src/common/guard/duedate.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/common/guard/duedate.guard.ts -------------------------------------------------------------------------------- /backend/src/common/guard/refreshtoken.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/common/guard/refreshtoken.guard.ts -------------------------------------------------------------------------------- /backend/src/common/pipes/customValidationPipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/common/pipes/customValidationPipe.ts -------------------------------------------------------------------------------- /backend/src/common/response/response.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/common/response/response.dto.ts -------------------------------------------------------------------------------- /backend/src/common/typeorm/typeorm.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/common/typeorm/typeorm.decorator.ts -------------------------------------------------------------------------------- /backend/src/common/typeorm/typeorm.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/common/typeorm/typeorm.module.ts -------------------------------------------------------------------------------- /backend/src/custom/customDecorator/cookie.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/custom/customDecorator/cookie.decorator.ts -------------------------------------------------------------------------------- /backend/src/custom/customDecorator/feed.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/custom/customDecorator/feed.decorator.ts -------------------------------------------------------------------------------- /backend/src/custom/customError/httpException.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/custom/customError/httpException.ts -------------------------------------------------------------------------------- /backend/src/custom/customError/serverError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/custom/customError/serverError.ts -------------------------------------------------------------------------------- /backend/src/custom/customValidators/feedValidate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/custom/customValidators/feedValidate.ts -------------------------------------------------------------------------------- /backend/src/custom/customValidators/nicknameValidate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/custom/customValidators/nicknameValidate.ts -------------------------------------------------------------------------------- /backend/src/entities/Comment.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/entities/Comment.entity.ts -------------------------------------------------------------------------------- /backend/src/entities/Feed.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/entities/Feed.entity.ts -------------------------------------------------------------------------------- /backend/src/entities/Image.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/entities/Image.entity.ts -------------------------------------------------------------------------------- /backend/src/entities/Like.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/entities/Like.entity.ts -------------------------------------------------------------------------------- /backend/src/entities/Posting.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/entities/Posting.entity.ts -------------------------------------------------------------------------------- /backend/src/entities/User.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/entities/User.entity.ts -------------------------------------------------------------------------------- /backend/src/entities/UserFeedMapping.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/entities/UserFeedMapping.entity.ts -------------------------------------------------------------------------------- /backend/src/entities/entityInterfaces/CommentInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/entities/entityInterfaces/CommentInterface.ts -------------------------------------------------------------------------------- /backend/src/entities/entityInterfaces/FeedInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/entities/entityInterfaces/FeedInterface.ts -------------------------------------------------------------------------------- /backend/src/entities/entityInterfaces/ImageInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/entities/entityInterfaces/ImageInterface.ts -------------------------------------------------------------------------------- /backend/src/entities/entityInterfaces/PostingInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/entities/entityInterfaces/PostingInterface.ts -------------------------------------------------------------------------------- /backend/src/entities/entityInterfaces/UserInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/entities/entityInterfaces/UserInterface.ts -------------------------------------------------------------------------------- /backend/src/feed/dto/create.feed.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/feed/dto/create.feed.dto.ts -------------------------------------------------------------------------------- /backend/src/feed/dto/find.feed.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/feed/dto/find.feed.dto.ts -------------------------------------------------------------------------------- /backend/src/feed/dto/info.feed.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/feed/dto/info.feed.dto.ts -------------------------------------------------------------------------------- /backend/src/feed/dto/request/feed.scroll.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/feed/dto/request/feed.scroll.dto.ts -------------------------------------------------------------------------------- /backend/src/feed/dto/response/feed.response.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/feed/dto/response/feed.response.dto.ts -------------------------------------------------------------------------------- /backend/src/feed/feed.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/feed/feed.controller.ts -------------------------------------------------------------------------------- /backend/src/feed/feed.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/feed/feed.module.ts -------------------------------------------------------------------------------- /backend/src/feed/feed.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/feed/feed.repository.ts -------------------------------------------------------------------------------- /backend/src/feed/feed.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/feed/feed.service.ts -------------------------------------------------------------------------------- /backend/src/feed/feed.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/feed/feed.utils.ts -------------------------------------------------------------------------------- /backend/src/feed/user.feed.mapping.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/feed/user.feed.mapping.repository.ts -------------------------------------------------------------------------------- /backend/src/image/dto/create.image.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/image/dto/create.image.dto.ts -------------------------------------------------------------------------------- /backend/src/image/image.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/image/image.controller.ts -------------------------------------------------------------------------------- /backend/src/image/image.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/image/image.module.ts -------------------------------------------------------------------------------- /backend/src/image/image.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/image/image.repository.ts -------------------------------------------------------------------------------- /backend/src/image/image.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/image/image.service.ts -------------------------------------------------------------------------------- /backend/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/main.ts -------------------------------------------------------------------------------- /backend/src/oauth/dto/oauth.postform.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/oauth/dto/oauth.postform.dto.ts -------------------------------------------------------------------------------- /backend/src/oauth/oauth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/oauth/oauth.module.ts -------------------------------------------------------------------------------- /backend/src/oauth/oauth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/oauth/oauth.service.ts -------------------------------------------------------------------------------- /backend/src/oauth/oauth.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/oauth/oauth.utils.ts -------------------------------------------------------------------------------- /backend/src/posting/decorators/create.posting.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/posting/decorators/create.posting.decorator.ts -------------------------------------------------------------------------------- /backend/src/posting/dto/create.posting.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/posting/dto/create.posting.dto.ts -------------------------------------------------------------------------------- /backend/src/posting/dto/find.posting.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/posting/dto/find.posting.dto.ts -------------------------------------------------------------------------------- /backend/src/posting/dto/looking.posting.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/posting/dto/looking.posting.dto.ts -------------------------------------------------------------------------------- /backend/src/posting/dto/posting.scroll.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/posting/dto/posting.scroll.dto.ts -------------------------------------------------------------------------------- /backend/src/posting/posting.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/posting/posting.controller.ts -------------------------------------------------------------------------------- /backend/src/posting/posting.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/posting/posting.module.ts -------------------------------------------------------------------------------- /backend/src/posting/posting.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/posting/posting.repository.ts -------------------------------------------------------------------------------- /backend/src/posting/posting.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/posting/posting.service.ts -------------------------------------------------------------------------------- /backend/src/users/decorators/users.decorators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/users/decorators/users.decorators.ts -------------------------------------------------------------------------------- /backend/src/users/dto/cookie.info.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/users/dto/cookie.info.dto.ts -------------------------------------------------------------------------------- /backend/src/users/dto/find.user.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/users/dto/find.user.dto.ts -------------------------------------------------------------------------------- /backend/src/users/dto/join.cookie.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/users/dto/join.cookie.dto.ts -------------------------------------------------------------------------------- /backend/src/users/dto/join.nickname.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/users/dto/join.nickname.dto.ts -------------------------------------------------------------------------------- /backend/src/users/dto/join.request.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/users/dto/join.request.dto.ts -------------------------------------------------------------------------------- /backend/src/users/users.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/users/users.controller.ts -------------------------------------------------------------------------------- /backend/src/users/users.facade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/users/users.facade.ts -------------------------------------------------------------------------------- /backend/src/users/users.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/users/users.module.ts -------------------------------------------------------------------------------- /backend/src/users/users.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/users/users.repository.ts -------------------------------------------------------------------------------- /backend/src/users/users.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/src/users/users.service.ts -------------------------------------------------------------------------------- /backend/test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /backend/test/guard/Duedate.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/test/guard/Duedate.spec.ts -------------------------------------------------------------------------------- /backend/test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/test/jest-e2e.json -------------------------------------------------------------------------------- /backend/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/tsconfig.build.json -------------------------------------------------------------------------------- /backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/tsconfig.json -------------------------------------------------------------------------------- /backend/tsconfig.paths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/tsconfig.paths.json -------------------------------------------------------------------------------- /backend/webpack-hmr.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/backend/webpack-hmr.config.js -------------------------------------------------------------------------------- /frontend/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/.eslintrc.js -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/.prettierrc -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/craco.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/craco.config.js -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/public/logo192.png -------------------------------------------------------------------------------- /frontend/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/public/logo512.png -------------------------------------------------------------------------------- /frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/public/manifest.json -------------------------------------------------------------------------------- /frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/public/robots.txt -------------------------------------------------------------------------------- /frontend/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | interface Window { 2 | Kakao: any 3 | } 4 | -------------------------------------------------------------------------------- /frontend/src/_mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/_mixin.scss -------------------------------------------------------------------------------- /frontend/src/assets/XIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/assets/XIcon.svg -------------------------------------------------------------------------------- /frontend/src/assets/arrowIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/assets/arrowIcon.svg -------------------------------------------------------------------------------- /frontend/src/assets/cameraIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/assets/cameraIcon.svg -------------------------------------------------------------------------------- /frontend/src/assets/defaultUserImage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/assets/defaultUserImage.svg -------------------------------------------------------------------------------- /frontend/src/assets/desktopSideImage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/assets/desktopSideImage.svg -------------------------------------------------------------------------------- /frontend/src/assets/downIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/assets/downIcon.svg -------------------------------------------------------------------------------- /frontend/src/assets/editIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/assets/editIcon.svg -------------------------------------------------------------------------------- /frontend/src/assets/kakaoIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/assets/kakaoIcon.svg -------------------------------------------------------------------------------- /frontend/src/assets/logoutIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/assets/logoutIcon.svg -------------------------------------------------------------------------------- /frontend/src/assets/plusIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/assets/plusIcon.svg -------------------------------------------------------------------------------- /frontend/src/assets/plusPrimaryIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/assets/plusPrimaryIcon.svg -------------------------------------------------------------------------------- /frontend/src/assets/questionIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/assets/questionIcon.svg -------------------------------------------------------------------------------- /frontend/src/assets/shareIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/assets/shareIcon.svg -------------------------------------------------------------------------------- /frontend/src/assets/splashImage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/assets/splashImage.svg -------------------------------------------------------------------------------- /frontend/src/assets/uploadCameraIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/assets/uploadCameraIcon.svg -------------------------------------------------------------------------------- /frontend/src/assets/warningIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/assets/warningIcon.svg -------------------------------------------------------------------------------- /frontend/src/assets/xoxoIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/assets/xoxoIcon.svg -------------------------------------------------------------------------------- /frontend/src/components/AuthRoute/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/components/AuthRoute/index.tsx -------------------------------------------------------------------------------- /frontend/src/components/FeedRoute/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/components/FeedRoute/index.tsx -------------------------------------------------------------------------------- /frontend/src/components/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/components/Header/index.tsx -------------------------------------------------------------------------------- /frontend/src/components/Header/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/components/Header/style.scss -------------------------------------------------------------------------------- /frontend/src/components/InfoModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/components/InfoModal/index.tsx -------------------------------------------------------------------------------- /frontend/src/components/InfoModal/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/components/InfoModal/style.scss -------------------------------------------------------------------------------- /frontend/src/components/Input/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/components/Input/index.tsx -------------------------------------------------------------------------------- /frontend/src/components/Input/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/components/Input/style.scss -------------------------------------------------------------------------------- /frontend/src/components/SigninBackground/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/components/SigninBackground/index.tsx -------------------------------------------------------------------------------- /frontend/src/components/SigninBackground/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/components/SigninBackground/style.scss -------------------------------------------------------------------------------- /frontend/src/components/SigninRoute/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/components/SigninRoute/index.tsx -------------------------------------------------------------------------------- /frontend/src/components/Toast/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/components/Toast/index.tsx -------------------------------------------------------------------------------- /frontend/src/components/Toast/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/components/Toast/styles.scss -------------------------------------------------------------------------------- /frontend/src/custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/custom.d.ts -------------------------------------------------------------------------------- /frontend/src/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/global.scss -------------------------------------------------------------------------------- /frontend/src/hooks/useGet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/hooks/useGet.tsx -------------------------------------------------------------------------------- /frontend/src/hooks/useInfiniteScroll.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/hooks/useInfiniteScroll.tsx -------------------------------------------------------------------------------- /frontend/src/hooks/usePatch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/hooks/usePatch.tsx -------------------------------------------------------------------------------- /frontend/src/hooks/usePost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/hooks/usePost.tsx -------------------------------------------------------------------------------- /frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/index.tsx -------------------------------------------------------------------------------- /frontend/src/pages/CreateFeed/CreateFeedButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/CreateFeed/CreateFeedButton/index.tsx -------------------------------------------------------------------------------- /frontend/src/pages/CreateFeed/GroupMember/Suggestions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/CreateFeed/GroupMember/Suggestions.tsx -------------------------------------------------------------------------------- /frontend/src/pages/CreateFeed/GroupMember/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/CreateFeed/GroupMember/index.tsx -------------------------------------------------------------------------------- /frontend/src/pages/CreateFeed/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/CreateFeed/index.tsx -------------------------------------------------------------------------------- /frontend/src/pages/CreateFeed/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/CreateFeed/style.scss -------------------------------------------------------------------------------- /frontend/src/pages/CreateFeed/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/CreateFeed/types.ts -------------------------------------------------------------------------------- /frontend/src/pages/EditFeed/EditFeedButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/EditFeed/EditFeedButton/index.tsx -------------------------------------------------------------------------------- /frontend/src/pages/EditFeed/GroupMember/Suggestions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/EditFeed/GroupMember/Suggestions.tsx -------------------------------------------------------------------------------- /frontend/src/pages/EditFeed/GroupMember/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/EditFeed/GroupMember/index.tsx -------------------------------------------------------------------------------- /frontend/src/pages/EditFeed/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/EditFeed/index.tsx -------------------------------------------------------------------------------- /frontend/src/pages/EditFeed/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/EditFeed/style.scss -------------------------------------------------------------------------------- /frontend/src/pages/EditFeed/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/EditFeed/types.ts -------------------------------------------------------------------------------- /frontend/src/pages/Error/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/Error/index.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Error/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/Error/style.scss -------------------------------------------------------------------------------- /frontend/src/pages/Feed/FeedPostingList/Loading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/Feed/FeedPostingList/Loading/index.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Feed/FeedPostingList/Loading/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/Feed/FeedPostingList/Loading/style.scss -------------------------------------------------------------------------------- /frontend/src/pages/Feed/FeedPostingList/ObserverElement/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/Feed/FeedPostingList/ObserverElement/index.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Feed/FeedPostingList/ObserverElement/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/Feed/FeedPostingList/ObserverElement/style.scss -------------------------------------------------------------------------------- /frontend/src/pages/Feed/FeedPostingList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/Feed/FeedPostingList/index.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Feed/FeedPostingList/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/Feed/FeedPostingList/style.scss -------------------------------------------------------------------------------- /frontend/src/pages/Feed/FeedProfile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/Feed/FeedProfile/index.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Feed/FeedProfile/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/Feed/FeedProfile/style.scss -------------------------------------------------------------------------------- /frontend/src/pages/Feed/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/Feed/index.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Feed/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/Feed/style.scss -------------------------------------------------------------------------------- /frontend/src/pages/Feeds/CreateFeedButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/Feeds/CreateFeedButton/index.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Feeds/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/Feeds/index.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Feeds/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/Feeds/styles.scss -------------------------------------------------------------------------------- /frontend/src/pages/Info/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/Info/index.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Info/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/Info/style.scss -------------------------------------------------------------------------------- /frontend/src/pages/Posting/ImageSlider/ImageCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/Posting/ImageSlider/ImageCard.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Posting/ImageSlider/imageQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/Posting/ImageSlider/imageQuery.ts -------------------------------------------------------------------------------- /frontend/src/pages/Posting/ImageSlider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/Posting/ImageSlider/index.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Posting/ImageSlider/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/Posting/ImageSlider/types.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Posting/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/Posting/index.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Posting/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/Posting/styles.scss -------------------------------------------------------------------------------- /frontend/src/pages/SignIn/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/SignIn/index.tsx -------------------------------------------------------------------------------- /frontend/src/pages/SignIn/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/SignIn/style.scss -------------------------------------------------------------------------------- /frontend/src/pages/Write/CreatePostingButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/Write/CreatePostingButton/index.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Write/ImageCards/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/Write/ImageCards/index.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Write/ThumbnailPreview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/Write/ThumbnailPreview/index.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Write/ThumbnailPreview/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/Write/ThumbnailPreview/style.scss -------------------------------------------------------------------------------- /frontend/src/pages/Write/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/Write/index.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Write/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/Write/style.scss -------------------------------------------------------------------------------- /frontend/src/pages/Write/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/pages/Write/types.ts -------------------------------------------------------------------------------- /frontend/src/types/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/types/index.tsx -------------------------------------------------------------------------------- /frontend/src/util/canvasToFile/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/util/canvasToFile/index.ts -------------------------------------------------------------------------------- /frontend/src/util/cropImg/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/util/cropImg/index.tsx -------------------------------------------------------------------------------- /frontend/src/util/fetcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/util/fetcher.ts -------------------------------------------------------------------------------- /frontend/src/util/imageCompress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/util/imageCompress.ts -------------------------------------------------------------------------------- /frontend/src/util/imageQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/util/imageQuery.ts -------------------------------------------------------------------------------- /frontend/src/util/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/util/index.ts -------------------------------------------------------------------------------- /frontend/src/util/pixelateCanvas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/util/pixelateCanvas/index.ts -------------------------------------------------------------------------------- /frontend/src/util/uploadImage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/util/uploadImage/index.ts -------------------------------------------------------------------------------- /frontend/src/util/validation/bool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/util/validation/bool.ts -------------------------------------------------------------------------------- /frontend/src/util/validation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/src/util/validation/index.ts -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/tsconfig.paths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/frontend/tsconfig.paths.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2022/Web02-XOXO/HEAD/readme.md --------------------------------------------------------------------------------