Skip to content

Commit

Permalink
chore: upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
icfor committed Jan 19, 2024
1 parent 55cbcf5 commit a2a0ccd
Show file tree
Hide file tree
Showing 2 changed files with 107 additions and 166 deletions.
18 changes: 11 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,12 @@
"scripts": {
"build": "rm -rf dist && tsc",
"dev": "NODE_ENV=development nodemon",
"lint": "eslint . --ext .ts && prettier './**/*.{ts,js}' --check",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint . --ext .ts && prettier './**/*.{ts,js}' --check",
"lint:prettier": "npm run prettier -- --check",
"postinstall": "husky install",
"prettier": "prettier './**/*.{ts,js}'",
"prettier:fix": "npm run prettier -- --write",
"start": "NODE_ENV=production node dist/index.js",
"test": "echo No tests"
},
Expand All @@ -27,13 +31,13 @@
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@stylistic/eslint-plugin": "^1.5.3",
"@stylistic/eslint-plugin": "^1.5.4",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
Expand All @@ -42,8 +46,8 @@
"eslint-plugin-prettier": "^5.1.3",
"graphql": "^16.8.1",
"husky": "^8.0.3",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"nodemon": "^3.0.3",
"prettier": "^3.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
Expand Down
Loading

0 comments on commit a2a0ccd

Please sign in to comment.