Skip to content

Commit

Permalink
✨ feat: PR 및 issue 템플릿 추가하기 Team-inglo#1
Browse files Browse the repository at this point in the history
  • Loading branch information
naarang committed Oct 16, 2024
1 parent 466a6b8 commit 457e1ce
Show file tree
Hide file tree
Showing 32 changed files with 4,324 additions and 25 deletions.
24 changes: 0 additions & 24 deletions .github/workflows/jira.yml

This file was deleted.

20 changes: 19 additions & 1 deletion README.md
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:` |
5 changes: 5 additions & 0 deletions build.sh
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/
28 changes: 28 additions & 0 deletions eslint.config.js
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 },
],
},
},
)
13 changes: 13 additions & 0 deletions index.html
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>
44 changes: 44 additions & 0 deletions package.json
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"
}
}
Loading

0 comments on commit 457e1ce

Please sign in to comment.