forked from Team-inglo/Giggle-Web
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ feat: PR 및 issue 템플릿 추가하기 Team-inglo#1
- Loading branch information
Showing
32 changed files
with
4,324 additions
and
25 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,20 @@ | ||
# Giggle-Web | ||
giggle 서비스 web | ||
|
||
추후에 실행 방법 적어야 함 | ||
|
||
## commit convention | ||
|
||
사용 방법 예시 | ||
|
||
- `✨ feat: 어쩌구저쩌구 #이슈번호` | ||
|
||
| Git Convention | Description | Gitmoji | Gitmoji Code | | ||
| -------------- | ------------------------------------------------------ | ------- | --------------------- | | ||
| feat | 새로운 기능과 관련된 것 | ✨ | `:sparkles:` | | ||
| fix | 오류와 같은 것을 수정 | 🐛 | `:bug:` | | ||
| test | 테스트를 추가하거나 수정 | ✅ | `:white_check_mark:` | | ||
| docs | 문서와 관련하여 수정한 부분 | 📝 | `:memo:` | | ||
| style | 코드의 포맷, 세미콜론 누락 등, 코드 로직의 변화 없음 | 🎨 | `:art:` | | ||
| refactor | 코드의 리팩토링 (기능 변화 없음) | ♻️ | `:recycle:` | | ||
| build | 빌드 관련 파일 수정 | 🛠️ | `:hammer_and_wrench:` | | ||
| chore | 기타 작업(패키지 매니저 설정 등, production code 무관) | 🔧 | `:wrench:` | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/sh | ||
cd ../ | ||
mkdir output | ||
cp -R ./Giggle-Web/* ./output | ||
cp -R ./output ./Giggle-Web/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import js from '@eslint/js' | ||
import globals from 'globals' | ||
import reactHooks from 'eslint-plugin-react-hooks' | ||
import reactRefresh from 'eslint-plugin-react-refresh' | ||
import tseslint from 'typescript-eslint' | ||
|
||
export default tseslint.config( | ||
{ ignores: ['dist'] }, | ||
{ | ||
extends: [js.configs.recommended, ...tseslint.configs.recommended], | ||
files: ['**/*.{ts,tsx}'], | ||
languageOptions: { | ||
ecmaVersion: 2020, | ||
globals: globals.browser, | ||
}, | ||
plugins: { | ||
'react-hooks': reactHooks, | ||
'react-refresh': reactRefresh, | ||
}, | ||
rules: { | ||
...reactHooks.configs.recommended.rules, | ||
'react-refresh/only-export-components': [ | ||
'warn', | ||
{ allowConstantExport: true }, | ||
], | ||
}, | ||
}, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" type="image/svg+xml" href="/vite.svg" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Vite + React + TS</title> | ||
</head> | ||
<body> | ||
<div id="root"></div> | ||
<script type="module" src="/src/main.tsx"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
"name": "giggle-web", | ||
"private": true, | ||
"version": "0.0.0", | ||
"type": "module", | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "tsc -b && vite build", | ||
"lint": "eslint .", | ||
"preview": "vite preview" | ||
}, | ||
"dependencies": { | ||
"@tanstack/react-query": "^5.59.15", | ||
"axios": "^1.7.7", | ||
"react": "^18.3.1", | ||
"react-dom": "^18.3.1", | ||
"react-router-dom": "^6.27.0" | ||
}, | ||
"devDependencies": { | ||
"@eslint/js": "^9.11.1", | ||
"@types/node": "^22.7.5", | ||
"@types/react": "^18.3.10", | ||
"@types/react-dom": "^18.3.0", | ||
"@types/react-router-dom": "^5.3.3", | ||
"@vitejs/plugin-react": "^4.3.2", | ||
"autoprefixer": "^10.4.20", | ||
"eslint": "^9.12.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-import": "^2.31.0", | ||
"eslint-plugin-jsx-a11y": "^6.10.0", | ||
"eslint-plugin-react": "^7.37.1", | ||
"eslint-plugin-react-hooks": "5.1.0-rc-fb9a90fa48-20240614", | ||
"eslint-plugin-react-refresh": "^0.4.12", | ||
"eslint-plugin-tailwindcss": "^3.17.5", | ||
"globals": "^15.9.0", | ||
"postcss": "^8.4.47", | ||
"prettier": "^3.3.3", | ||
"tailwindcss": "^3.4.14", | ||
"typescript": "^5.5.3", | ||
"typescript-eslint": "^8.7.0", | ||
"vite": "^5.4.8", | ||
"vite-plugin-svgr": "^4.2.0" | ||
} | ||
} |
Oops, something went wrong.