Skip to content

Commit

Permalink
[#7] 패키지 추가 및 추가 명령어 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
03hoho03 committed May 4, 2024
1 parent 98cc7e9 commit 350e1ea
Showing 1 changed file with 21 additions and 4 deletions.
25 changes: 21 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,34 +8,51 @@
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"preinstall": "husky install"
"preinstall": "husky install",
"mock": "npx tsx watch ./src/mocks/http.ts",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore ."
},
"dependencies": {
"@tanstack/react-query": "^5.34.1",
"@tanstack/react-query-devtools": "^5.34.1",
"axios": "^1.6.8",
"dayjs": "^1.11.11",
"framer-motion": "^11.1.7",
"jotai": "^2.8.0",
"msw": "^2.2.14",
"next": "14.2.3",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.51.4",
"styled-components": "^6.1.9"
},
"devDependencies": {
"@mswjs/http-middleware": "^0.10.1",
"@swc/plugin-styled-components": "^2.0.2",
"@tanstack/react-query-devtools": "^5.34.1",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"cors": "^2.8.5",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"msw": "^2.2.14",
"prettier": "^3.2.5",
"typescript": "^5"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"msw": {
"workerDirectory": [
"public"
]
}
}
}

0 comments on commit 350e1ea

Please sign in to comment.