Skip to content

Commit

Permalink
chore(package): bump dev dependencies (#982)
Browse files Browse the repository at this point in the history
  • Loading branch information
chimurai committed Apr 8, 2024
1 parent 5309c6c commit afb23fb
Show file tree
Hide file tree
Showing 5 changed files with 432 additions and 726 deletions.
16 changes: 8 additions & 8 deletions package.json
Expand Up @@ -51,18 +51,18 @@
},
"homepage": "https://github.com/chimurai/http-proxy-middleware#readme",
"devDependencies": {
"@commitlint/cli": "17.7.1",
"@commitlint/config-conventional": "17.7.0",
"@commitlint/cli": "19.2.1",
"@commitlint/config-conventional": "19.1.0",
"@types/debug": "4.1.12",
"@types/express": "4.17.21",
"@types/is-glob": "4.0.4",
"@types/jest": "29.5.12",
"@types/micromatch": "4.0.6",
"@types/node": "20.11.30",
"@types/supertest": "2.0.12",
"@types/node": "20.12.5",
"@types/supertest": "6.0.2",
"@types/ws": "8.5.10",
"@typescript-eslint/eslint-plugin": "7.4.0",
"@typescript-eslint/parser": "7.4.0",
"@typescript-eslint/eslint-plugin": "7.6.0",
"@typescript-eslint/parser": "7.6.0",
"body-parser": "1.20.2",
"browser-sync": "3.0.2",
"connect": "3.7.0",
Expand All @@ -74,12 +74,12 @@
"husky": "9.0.11",
"jest": "29.7.0",
"lint-staged": "15.2.2",
"mockttp": "3.10.1",
"mockttp": "3.10.2",
"open": "8.4.2",
"prettier": "3.2.5",
"supertest": "6.3.4",
"ts-jest": "29.1.2",
"typescript": "5.4.3",
"typescript": "5.4.4",
"ws": "8.16.0"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/express-router.spec.ts
Expand Up @@ -5,7 +5,7 @@ import { Options } from '../../src/index';

describe('Usage in Express', () => {
let app: express.Express;
let agent: request.SuperTest<request.Test>;
let agent: request.Agent;

beforeEach(() => {
app = express();
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/http-proxy-middleware.spec.ts
Expand Up @@ -41,7 +41,7 @@ describe('E2E http-proxy-middleware', () => {

describe('http-proxy-middleware in actual server', () => {
let mockTargetServer: Mockttp;
let agent: request.SuperTest<request.Test>;
let agent: request.Agent;

beforeEach(async () => {
mockTargetServer = getLocal();
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/response-interceptor.spec.ts
Expand Up @@ -3,7 +3,7 @@ import { createApp } from './test-kit';
import * as request from 'supertest';

describe('responseInterceptor()', () => {
let agent: request.SuperTest<request.Test>;
let agent: request.Agent;

describe('intercept responses', () => {
beforeEach(() => {
Expand Down

0 comments on commit afb23fb

Please sign in to comment.