Skip to content

Commit

Permalink
fix(deps): move ESLint and related packages to dev dependencies
Browse files Browse the repository at this point in the history
ESLint and its related pacakges are not required in production and should be listed as
`devDependencies` instead of dependencies

fix #46
  • Loading branch information
PunGrumpy committed Jun 1, 2024
1 parent 75a4df5 commit 98de50c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,24 +70,24 @@
"middleware"
],
"dependencies": {
"@eslint/js": "^9.3.0",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"chalk": "^5.3.0",
"elysia": "^1.0.21",
"eslint": "9.x",
"eslint-plugin-simple-import-sort": "^12.1.0",
"typescript-eslint": "^7.10.0"
"elysia": "^1.0.21"
},
"devDependencies": {
"@elysiajs/eden": "^1.0.13",
"@eslint/js": "^9.3.0",
"@trunkio/launcher": "^1.3.1",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"bun-types": "^1.1.9",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "9.x",
"eslint-plugin-simple-import-sort": "^12.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.4",
"prettier": "^3.2.5"
"prettier": "^3.2.5",
"typescript-eslint": "^7.10.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
Expand Down

0 comments on commit 98de50c

Please sign in to comment.