Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions .dry-aged-deps.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"exclude": {
"@types/jest": "Pinned to jest 27.x; upgrade requires jest 29+ migration",
"eslint": "Pinned to ^8; upgrade to 9+ requires flat config migration and plugin compatibility",
"eslint-config-prettier": "Major version upgrade; blocked by eslint 8.x constraint",
"eslint-import-resolver-node": "Pinned by eslint-plugin-import compatibility",
Expand All @@ -9,9 +8,6 @@
"eslint-plugin-jsdoc": "Major version upgrade; blocked by eslint 8.x constraint",
"eslint-plugin-jsonc": "Major version upgrade; blocked by eslint 8.x constraint",
"eslint-plugin-no-secrets": "Major version upgrade; blocked by eslint 8.x constraint",
"eslint-plugin-unicorn": "Major version upgrade; blocked by eslint 8.x constraint",
"jest": "Pinned to ^27; upgrade requires ts-jest migration",
"jest-junit": "Major version upgrade; blocked by jest 27.x constraint",
"ts-jest": "Pinned to jest 27.x; upgrade requires jest migration"
"eslint-plugin-unicorn": "Major version upgrade; blocked by eslint 8.x constraint"
}
}
19 changes: 11 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"@commitlint/cli": "^20",
"@commitlint/config-conventional": "^20",
"@types/http-status-codes": "^1.2.0",
"@types/jest": "^27.4.1",
"@types/jest": "^30",
"@types/node": "^22",
"@typescript-eslint/eslint-plugin": "^5",
"@typescript-eslint/parser": "^5",
Expand All @@ -46,11 +46,11 @@
"eslint-plugin-unicorn": "^42.0.0",
"http-status-codes": "^2.2.0",
"husky": "^9",
"jest": "^27",
"jest-junit": "^13",
"jest": "^29",
"jest-junit": "^16",
"json-schema": "^0.4.0",
"prettier": "^3",
"ts-jest": "^27",
"ts-jest": "^29",
"typescript": "^5"
},
"keywords": [
Expand Down Expand Up @@ -109,10 +109,13 @@
]
],
"preset": "ts-jest",
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.dev.json"
}
"transform": {
"^.+\\.tsx?$": [
"ts-jest",
{
"tsconfig": "tsconfig.dev.json"
}
]
}
},
"types": "lib/index.d.ts",
Expand Down
Loading
Loading