Skip to content

Commit

Permalink
build: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
hueyy committed Feb 11, 2025
1 parent b857639 commit d50bfda
Show file tree
Hide file tree
Showing 6 changed files with 5,707 additions and 3,489 deletions.
5 changes: 0 additions & 5 deletions .eslintignore

This file was deleted.

3 changes: 0 additions & 3 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npm run lint:staged
11 changes: 7 additions & 4 deletions .eslintrc.js → eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
// eslint-disable-next-line unicorn/prefer-module
module.exports = {
env: {
node: true
},
extends: [
`eslint:recommended`,
`plugin:node/recommended`,
Expand Down Expand Up @@ -55,5 +52,11 @@ module.exports = {
"sort-keys-fix/sort-keys-fix": 2,
"unicorn/filename-case": `off`,
"unicorn/prefer-node-protocol": `off`
}
},
ignores: [
"node_modules",
"package-lock.json",
"dist",
"!.eslintrc.js"
]
}
66 changes: 36 additions & 30 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hungryhippo",
"version": "1.1.0",
"version": "1.1.1",
"description": "creates feeds where there were none before",
"license": "EUPL-1.2",
"author": "Huey <hello@huey.xyz>",
Expand All @@ -23,47 +23,53 @@
]
},
"dependencies": {
"axios": "^1.6.5",
"axios-cache-interceptor": "^1.4.1",
"cheerio": "^1.0.0-rc.12",
"dayjs": "^1.11.10",
"express": "^4.18.2",
"axios": "^1.7.9",
"axios-cache-interceptor": "^1.6.2",
"cheerio": "^1.0.0",
"dayjs": "^1.11.13",
"express": "^4.21.2",
"feed": "^4.2.2",
"form-data": "^4.0.0",
"form-data": "^4.0.1",
"helmet": "^7.1.0",
"html-entities": "^2.4.0",
"html-entities": "^2.5.2",
"morgan": "^1.10.0",
"playwright-chromium": "^1.41.0",
"qs": "^6.11.2"
"playwright-chromium": "^1.50.1",
"qs": "^6.14.0"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.7",
"@babel/eslint-plugin": "^7.23.5",
"@babel/node": "^7.22.19",
"@babel/preset-env": "^7.23.8",
"@babel/preset-typescript": "^7.23.3",
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.8",
"@babel/eslint-plugin": "^7.25.9",
"@babel/node": "^7.26.0",
"@babel/preset-env": "^7.26.8",
"@babel/preset-typescript": "^7.26.0",
"@types/express": "^4.17.21",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"dotenv": "^16.3.1",
"eslint": "8.56.0",
"@types/node": "^22.13.1",
"@typescript-eslint/eslint-plugin": "8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"dotenv": "^16.4.7",
"eslint": "9.20.0",
"eslint-plugin-disable": "^2.0.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-no-secrets": "^0.8.9",
"eslint-plugin-no-secrets": "^2.2.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-sonarjs": "^0.23.0",
"eslint-plugin-sonarjs": "^3.0.1",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-unicorn": "^50.0.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"nodemon": "^3.0.3",
"eslint-plugin-unicorn": "^56.0.1",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"nodemon": "^3.1.9",
"tsc-files": "^1.1.4",
"typescript": "^5.3.3"
"typescript": "^5.7.3"
},
"engines": {
"node": ">=v16.1.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"core-js",
"playwright-chromium"
]
}
}
}
Loading

0 comments on commit d50bfda

Please sign in to comment.