Skip to content

Commit

Permalink
Init: 파일구조 및 mock서버 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
kangsinbeom committed May 27, 2024
1 parent b808d4b commit 169b382
Show file tree
Hide file tree
Showing 64 changed files with 4,242 additions and 90 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,5 @@ dist-ssr
*.njsproj
*.sln
*.sw?

.env
9 changes: 9 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"useTabs": false,
"trailingComma": "all",
"printWidth": 90,
"bracketSpacing": true
}
34 changes: 29 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,49 @@
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev": "vite --host",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
"preview": "vite preview",
"format": "prettier --check ./src",
"format:fix": "prettier --write ./src",
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src",
"deploy": "aws s3 sync ./dist s3://goormide-lucky7-bucket --profile=goorm-kangsinbeom"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@tanstack/react-query": "^5.32.0",
"@tanstack/react-query-devtools": "^5.32.0",
"axios": "^1.6.8",
"framer-motion": "^11.1.7",
"react": "^18.2.0",
"react-dom": "^18.2.0"
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.3",
"react-router-dom": "^6.23.0",
"zustand": "^4.5.2"
},
"devDependencies": {
"@eslint/js": "^9.1.1",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"msw": "^2.3.0",
"prettier": "3.2.5",
"typescript": "^5.2.2",
"typescript-eslint": "^7.7.1",
"vite": "^5.2.0"
},
"msw": {
"workerDirectory": [
"public"
]
}
}
}
Loading

0 comments on commit 169b382

Please sign in to comment.