Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
eriksson-daniel committed Nov 28, 2024
1 parent c5d6d5f commit a566b2a
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 22 deletions.
Binary file modified frontend/bun.lockb
Binary file not shown.
28 changes: 14 additions & 14 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,33 +13,33 @@
"lint": "biome check"
},
"devDependencies": {
"@types/bun": "1.1.13",
"@types/bun": "1.1.14",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/react-redux": "7.1.34",
"@vitejs/plugin-react": "4.3.3",
"typescript": "5.6.3",
"vite": "5.4.10",
"vite-tsconfig-paths": "5.1.0"
"@vitejs/plugin-react": "4.3.4",
"typescript": "5.7.2",
"vite": "6.0.1",
"vite-tsconfig-paths": "5.1.3"
},
"dependencies": {
"@biomejs/biome": "1.9.4",
"@grafana/faro-react": "1.11.0",
"@grafana/faro-web-sdk": "1.11.0",
"@grafana/faro-web-tracing": "1.11.0",
"@navikt/aksel-icons": "7.5.1",
"@navikt/ds-css": "7.5.1",
"@navikt/ds-react": "7.5.1",
"@navikt/fnrvalidator": "2.1.2",
"@grafana/faro-react": "1.12.2",
"@grafana/faro-web-sdk": "1.12.2",
"@grafana/faro-web-tracing": "1.12.2",
"@navikt/aksel-icons": "7.5.3",
"@navikt/ds-css": "7.5.3",
"@navikt/ds-react": "7.5.3",
"@navikt/fnrvalidator": "2.1.5",
"@navikt/nav-dekoratoren-moduler": "3.1.1",
"@reduxjs/toolkit": "2.3.0",
"@styled-icons/material": "10.47.0",
"date-fns": "4.1.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-redux": "9.1.2",
"react-router": "6.28.0",
"react-router-dom": "6.28.0",
"react-router": "7.0.1",
"react-router-dom": "7.0.1",
"styled-components": "6.1.13"
}
}
Binary file modified server/bun.lockb
Binary file not shown.
14 changes: 7 additions & 7 deletions server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,21 @@
},
"dependencies": {
"@fastify/cors": "10.0.1",
"@fastify/http-proxy": "10.0.1",
"@fastify/http-proxy": "10.0.2",
"@fastify/type-provider-typebox": "5.0.1",
"fastify": "5.1.0",
"fastify-metrics": "12.1.0",
"happy-dom": "15.11.0",
"jose": "5.8.0",
"openid-client": "5.6.5",
"happy-dom": "15.11.7",
"jose": "5.9.1",
"openid-client": "5.7.1",
"prom-client": "15.1.3",
"redis": "4.7.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "1.1.13",
"@types/node": "22.9.0",
"@types/bun": "1.1.14",
"@types/node": "22.10.1",
"tsc-alias": "1.8.10",
"typescript": "5.6.3"
"typescript": "5.7.2"
}
}
2 changes: 1 addition & 1 deletion server/src/config/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const NAIS_CLUSTER_NAME = requiredEnvString('NAIS_CLUSTER_NAME');
const isLocal = NAIS_CLUSTER_NAME === 'local';

const defaultValue = isLocal ? 'local' : undefined;
const localJwk: JWK = {};
const localJwk: JWK = { kty: 'RSA' };

export const TOKEN_X_CLIENT_ID = requiredEnvString('TOKEN_X_CLIENT_ID', defaultValue);
export const TOKEN_X_WELL_KNOWN_URL = requiredEnvString('TOKEN_X_WELL_KNOWN_URL', defaultValue);
Expand Down

0 comments on commit a566b2a

Please sign in to comment.