Skip to content

Commit

Permalink
[FE] feat: 해커톤 기능 구현(#1) (#25)
Browse files Browse the repository at this point in the history
* style: globalStyle 적용

Co-authored-by: 강다빈 <[email protected]>
Co-authored-by: 최진실 <[email protected]>

* feat: 해커톤 기능 구현 완료

Co-authored-by: 강다빈 <[email protected]>
Co-authored-by: 최진실 <[email protected]>

---------

Co-authored-by: 강다빈 <[email protected]>
Co-authored-by: 최진실 <[email protected]>
  • Loading branch information
3 people authored Jul 17, 2024
1 parent cb63cd4 commit 84a6ec8
Show file tree
Hide file tree
Showing 56 changed files with 1,534 additions and 65 deletions.
5 changes: 4 additions & 1 deletion frontend/.storybook/main.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { StorybookConfig } from "@storybook/react-webpack5";

const config: StorybookConfig = {
stories: ["../src/**/*.mdx", "../src/**/*.stories.@(js|jsx|mjs|ts|tsx)"],
stories: ["../src/**/*.stories.@(js|jsx|mjs|ts|tsx)"],
addons: [
"@storybook/addon-webpack5-compiler-swc",
"@storybook/addon-onboarding",
Expand All @@ -14,5 +14,8 @@ const config: StorybookConfig = {
name: "@storybook/react-webpack5",
options: {},
},
docs: {
autodocs: true,
},
};
export default config;
1 change: 1 addition & 0 deletions frontend/.storybook/preview.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import type { Preview } from "@storybook/react";
import React from "react";

const preview: Preview = {
parameters: {
Expand Down
File renamed without changes.
10 changes: 10 additions & 0 deletions frontend/jest.setup.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
// const { server } = require("@/mocks/server");

// // 모든 테스트 전에 MSW 서버를 시작합니다.
// beforeAll(() => server.listen());

// // 각 테스트 후 MSW 핸들러를 리셋합니다.
// afterEach(() => server.resetHandlers());

// // 모든 테스트 후 MSW 서버를 닫습니다.
// afterAll(() => server.close());
25 changes: 17 additions & 8 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "corea",
"version": "1.0.0",
"description": "Code Review Area",
"type": "module",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --mode=development --open --hot --progress",
Expand All @@ -25,6 +26,7 @@
"dependencies": {
"@react-icons/all-files": "^4.1.0",
"@tanstack/react-query": "^5.51.1",
"axios": "^1.7.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.24.1",
Expand Down Expand Up @@ -73,5 +75,10 @@
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"msw": {
"workerDirectory": [
"public"
]
}
}
Loading

0 comments on commit 84a6ec8

Please sign in to comment.