Skip to content

Commit 61a67ee

Browse files
Bump the npm group across 1 directory with 11 updates (#171)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Hans Kristian Flaatten <[email protected]>
1 parent 35c9497 commit 61a67ee

File tree

5 files changed

+2754
-2855
lines changed

5 files changed

+2754
-2855
lines changed

.eslintrc

-55
This file was deleted.

eslint.config.mjs

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import globals from "globals";
2+
import pluginJs from "@eslint/js";
3+
import tseslint from "typescript-eslint";
4+
5+
export default [
6+
{languageOptions: { globals: globals.browser }},
7+
pluginJs.configs.recommended,
8+
...tseslint.configs.recommended,
9+
{
10+
rules: {
11+
"@typescript-eslint/no-explicit-any": "off",
12+
},
13+
},
14+
];

package.json

+17-13
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@
1010
"build": "tsc",
1111
"test": "jest --coverage --no-cache --silent src/*.test.ts",
1212
"test:debug": "jest --runInBand --coverage --no-cache --detectOpenHandles src/*.test.ts",
13-
"lint": "eslint ./src --ext .ts,.tsx",
14-
"lint:fix": "eslint ./src --ext .js,.jsx,.ts,.tsx --fix"
13+
"eslint": "eslint",
14+
"lint": "eslint ./src",
15+
"lint:fix": "eslint ./src --fix"
1516
},
1617
"author": "NAIS <[email protected]>",
1718
"license": "MIT",
@@ -20,13 +21,14 @@
2021
},
2122
"dependencies": {
2223
"@opentelemetry/api": "^1.8.0",
23-
"@opentelemetry/auto-instrumentations-node": "^0.43.0",
24-
"google-auth-library": "^9.7.0",
24+
"@opentelemetry/auto-instrumentations-node": "^0.46.1",
25+
"google-auth-library": "^9.10.0",
2526
"jsonwebtoken": "^9.0.2",
2627
"log4js": "^6.9.1",
27-
"unleash-server": "5.10.2"
28+
"unleash-server": "5.12.4"
2829
},
2930
"devDependencies": {
31+
"@eslint/js": "^9.4.0",
3032
"@types/cors": "2.8.17",
3133
"@types/express": "4.17.21",
3234
"@types/express-session": "1.18.0",
@@ -35,27 +37,29 @@
3537
"@types/js-yaml": "4.0.9",
3638
"@types/jsonwebtoken": "^9.0.6",
3739
"@types/make-fetch-happen": "10.0.4",
38-
"@types/node": "20.11.30",
40+
"@types/node": "20.14.0",
3941
"@types/semver": "7.5.8",
4042
"@types/stoppable": "1.1.3",
4143
"@types/supertest": "6.0.2",
4244
"@types/type-is": "1.6.6",
4345
"@types/uuid": "9.0.8",
44-
"@typescript-eslint/eslint-plugin": "7.3.1",
45-
"@typescript-eslint/parser": "7.3.1",
46-
"eslint": "^8.57.0",
46+
"@typescript-eslint/eslint-plugin": "7.11.0",
47+
"@typescript-eslint/parser": "7.11.0",
48+
"eslint": "^9.4.0",
4749
"eslint-config-airbnb-base": "^15.0.0",
4850
"eslint-config-airbnb-typescript": "^18.0.0",
4951
"eslint-config-prettier": "^9.1.0",
5052
"eslint-plugin-import": "^2.29.1",
5153
"eslint-plugin-no-only-tests": "^3.1.0",
5254
"eslint-plugin-prettier": "^5.1.3",
55+
"globals": "^15.3.0",
5356
"jest": "^29.7.0",
5457
"nock": "^13.5.4",
55-
"prettier": "^3.2.5",
56-
"supertest": "^6.3.4",
57-
"ts-jest": "^29.1.2",
58+
"prettier": "^3.3.0",
59+
"supertest": "^7.0.0",
60+
"ts-jest": "^29.1.4",
5861
"ts-node": "^10.9.2",
59-
"typescript": "5.4.3"
62+
"typescript": "5.4.5",
63+
"typescript-eslint": "^7.11.0"
6064
}
6165
}

tsconfig.json

+1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@
6464
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */
6565
},
6666
"exclude": [
67+
"eslint.config.mjs",
6768
"node_modules",
6869
"dist",
6970
"jest.config.ts",

0 commit comments

Comments
 (0)