Skip to content

Commit afb23fb

Browse files
authored
chore(package): bump dev dependencies (#982)
1 parent 5309c6c commit afb23fb

File tree

5 files changed

+432
-726
lines changed

5 files changed

+432
-726
lines changed

package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -51,18 +51,18 @@
5151
},
5252
"homepage": "https://github.com/chimurai/http-proxy-middleware#readme",
5353
"devDependencies": {
54-
"@commitlint/cli": "17.7.1",
55-
"@commitlint/config-conventional": "17.7.0",
54+
"@commitlint/cli": "19.2.1",
55+
"@commitlint/config-conventional": "19.1.0",
5656
"@types/debug": "4.1.12",
5757
"@types/express": "4.17.21",
5858
"@types/is-glob": "4.0.4",
5959
"@types/jest": "29.5.12",
6060
"@types/micromatch": "4.0.6",
61-
"@types/node": "20.11.30",
62-
"@types/supertest": "2.0.12",
61+
"@types/node": "20.12.5",
62+
"@types/supertest": "6.0.2",
6363
"@types/ws": "8.5.10",
64-
"@typescript-eslint/eslint-plugin": "7.4.0",
65-
"@typescript-eslint/parser": "7.4.0",
64+
"@typescript-eslint/eslint-plugin": "7.6.0",
65+
"@typescript-eslint/parser": "7.6.0",
6666
"body-parser": "1.20.2",
6767
"browser-sync": "3.0.2",
6868
"connect": "3.7.0",
@@ -74,12 +74,12 @@
7474
"husky": "9.0.11",
7575
"jest": "29.7.0",
7676
"lint-staged": "15.2.2",
77-
"mockttp": "3.10.1",
77+
"mockttp": "3.10.2",
7878
"open": "8.4.2",
7979
"prettier": "3.2.5",
8080
"supertest": "6.3.4",
8181
"ts-jest": "29.1.2",
82-
"typescript": "5.4.3",
82+
"typescript": "5.4.4",
8383
"ws": "8.16.0"
8484
},
8585
"dependencies": {

test/e2e/express-router.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { Options } from '../../src/index';
55

66
describe('Usage in Express', () => {
77
let app: express.Express;
8-
let agent: request.SuperTest<request.Test>;
8+
let agent: request.Agent;
99

1010
beforeEach(() => {
1111
app = express();

test/e2e/http-proxy-middleware.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ describe('E2E http-proxy-middleware', () => {
4141

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

4646
beforeEach(async () => {
4747
mockTargetServer = getLocal();

test/e2e/response-interceptor.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { createApp } from './test-kit';
33
import * as request from 'supertest';
44

55
describe('responseInterceptor()', () => {
6-
let agent: request.SuperTest<request.Test>;
6+
let agent: request.Agent;
77

88
describe('intercept responses', () => {
99
beforeEach(() => {

0 commit comments

Comments
 (0)