Skip to content

Commit f434d78

Browse files
committed
⬆️(dependencies) update js dependencies
- Update js dependencies - Fix linters
1 parent e07f709 commit f434d78

File tree

10 files changed

+1832
-3723
lines changed

10 files changed

+1832
-3723
lines changed

src/frontend/apps/e2e/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"test:ui::chromium": "yarn test:ui --project=chromium"
1313
},
1414
"devDependencies": {
15-
"@playwright/test": "1.54.1",
15+
"@playwright/test": "1.54.2",
1616
"@types/node": "*",
1717
"@types/pdf-parse": "1.1.5",
1818
"eslint-config-impress": "*",

src/frontend/apps/impress/package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@
2929
"@emoji-mart/react": "1.1.1",
3030
"@fontsource/material-icons": "5.2.5",
3131
"@gouvfr-lasuite/integration": "1.0.3",
32-
"@gouvfr-lasuite/ui-kit": "0.10.0",
32+
"@gouvfr-lasuite/ui-kit": "0.11.0",
3333
"@hocuspocus/provider": "2.15.2",
34-
"@openfun/cunningham-react": "3.2.0",
34+
"@openfun/cunningham-react": "3.2.1",
3535
"@react-pdf/renderer": "4.3.0",
36-
"@sentry/nextjs": "9.42.0",
37-
"@tanstack/react-query": "5.83.0",
36+
"@sentry/nextjs": "10.2.0",
37+
"@tanstack/react-query": "5.84.1",
3838
"canvg": "4.0.3",
3939
"clsx": "2.1.1",
4040
"cmdk": "1.1.1",
@@ -46,8 +46,8 @@
4646
"idb": "8.0.3",
4747
"lodash": "4.17.21",
4848
"luxon": "3.7.1",
49-
"next": "15.4.4",
50-
"posthog-js": "1.258.2",
49+
"next": "15.4.6",
50+
"posthog-js": "1.258.6",
5151
"react": "*",
5252
"react-aria-components": "1.11.0",
5353
"react-dom": "*",
@@ -58,34 +58,34 @@
5858
"use-debounce": "10.0.5",
5959
"y-protocols": "1.0.6",
6060
"yjs": "*",
61-
"zustand": "5.0.6"
61+
"zustand": "5.0.7"
6262
},
6363
"devDependencies": {
6464
"@svgr/webpack": "8.1.0",
65-
"@tanstack/react-query-devtools": "5.83.0",
66-
"@testing-library/dom": "10.4.0",
67-
"@testing-library/jest-dom": "6.6.3",
65+
"@tanstack/react-query-devtools": "5.84.1",
66+
"@testing-library/dom": "10.4.1",
67+
"@testing-library/jest-dom": "6.6.4",
6868
"@testing-library/react": "16.3.0",
6969
"@testing-library/user-event": "14.6.1",
7070
"@types/jest": "30.0.0",
7171
"@types/lodash": "4.17.20",
72-
"@types/luxon": "3.6.2",
72+
"@types/luxon": "3.7.1",
7373
"@types/node": "*",
7474
"@types/react": "*",
7575
"@types/react-dom": "*",
76-
"cross-env": "7.0.3",
76+
"cross-env": "10.0.0",
7777
"dotenv": "17.2.1",
7878
"eslint-config-impress": "*",
7979
"fetch-mock": "9.11.0",
8080
"jest": "30.0.5",
8181
"jest-environment-jsdom": "30.0.5",
8282
"node-fetch": "2.7.0",
8383
"prettier": "3.6.2",
84-
"stylelint": "16.22.0",
85-
"stylelint-config-standard": "38.0.0",
84+
"stylelint": "16.23.0",
85+
"stylelint-config-standard": "39.0.0",
8686
"stylelint-prettier": "5.0.3",
8787
"typescript": "*",
88-
"webpack": "5.100.2",
88+
"webpack": "5.101.0",
8989
"workbox-webpack-plugin": "7.1.0"
9090
}
9191
}

src/frontend/apps/impress/src/features/docs/doc-export/types.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ export type DocsExporterPDF = Exporter<
4343
>;
4444

4545
export type DocsExporterDocx = Exporter<
46-
NoInfer<DocsBlockSchema>,
47-
NoInfer<DocsInlineContentSchema>,
48-
NoInfer<DocsStyleSchema>,
46+
DocsBlockSchema,
47+
DocsInlineContentSchema,
48+
DocsStyleSchema,
4949
Promise<Paragraph[] | Paragraph | Table> | Paragraph[] | Paragraph | Table,
5050
ParagraphChild,
5151
IRunPropertiesOptions,

src/frontend/apps/impress/src/features/service-worker/RequestSerializer.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,7 @@ export class RequestSerializer {
6464
}
6565

6666
public static objectToArrayBuffer(ob: Record<string, unknown>) {
67-
return RequestSerializer.stringToArrayBuffer(
68-
JSON.stringify(ob),
69-
) as ArrayBuffer;
67+
return RequestSerializer.stringToArrayBuffer(JSON.stringify(ob));
7068
}
7169

7270
constructor(requestData: RequestData) {

src/frontend/apps/impress/src/pages/globals.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ main ::-webkit-scrollbar-thumb:hover,
5252
line-height: 1;
5353
text-transform: none;
5454
letter-spacing: normal;
55-
word-wrap: normal;
55+
overflow-wrap: normal;
5656
white-space: nowrap;
5757
direction: ltr;
5858

src/frontend/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@
2828
"server:test": "yarn COLLABORATION_SERVER run test"
2929
},
3030
"resolutions": {
31-
"@types/node": "22.16.5",
32-
"@types/react": "19.1.8",
33-
"@types/react-dom": "19.1.6",
34-
"@typescript-eslint/eslint-plugin": "8.38.0",
35-
"@typescript-eslint/parser": "8.38.0",
31+
"@types/node": "22.17.0",
32+
"@types/react": "19.1.9",
33+
"@types/react-dom": "19.1.7",
34+
"@typescript-eslint/eslint-plugin": "8.39.0",
35+
"@typescript-eslint/parser": "8.39.0",
3636
"eslint": "8.57.0",
3737
"react": "19.1.0",
3838
"react-dom": "19.1.0",
39-
"typescript": "5.8.3",
39+
"typescript": "5.9.2",
4040
"yjs": "13.6.27"
4141
}
4242
}

src/frontend/packages/eslint-config-impress/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@
66
"lint": "eslint --ext .js ."
77
},
88
"dependencies": {
9-
"@next/eslint-plugin-next": "15.4.4",
10-
"@tanstack/eslint-plugin-query": "5.81.2",
9+
"@next/eslint-plugin-next": "15.4.6",
10+
"@tanstack/eslint-plugin-query": "5.83.1",
1111
"@typescript-eslint/eslint-plugin": "*",
1212
"@typescript-eslint/parser": "*",
1313
"eslint": "*",
14-
"eslint-config-next": "15.4.4",
14+
"eslint-config-next": "15.4.6",
1515
"eslint-config-prettier": "10.1.8",
1616
"eslint-plugin-import": "2.32.0",
1717
"eslint-plugin-jest": "29.0.1",
1818
"eslint-plugin-jsx-a11y": "6.10.2",
19-
"eslint-plugin-playwright": "2.2.0",
20-
"eslint-plugin-prettier": "5.5.3",
21-
"eslint-plugin-testing-library": "7.6.1",
19+
"eslint-plugin-playwright": "2.2.2",
20+
"eslint-plugin-prettier": "5.5.4",
21+
"eslint-plugin-testing-library": "7.6.3",
2222
"prettier": "3.6.2"
2323
}
2424
}

src/frontend/packages/i18n/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"eslint-plugin-import": "2.32.0",
1919
"i18next-parser": "9.3.0",
2020
"jest": "30.0.5",
21-
"ts-jest": "29.4.0",
21+
"ts-jest": "29.4.1",
2222
"typescript": "*",
2323
"yargs": "18.0.0"
2424
}

src/frontend/servers/y-provider/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
"dependencies": {
1919
"@blocknote/server-util": "0.35.0",
2020
"@hocuspocus/server": "2.15.2",
21-
"@sentry/node": "9.42.0",
22-
"@sentry/profiling-node": "9.42.0",
21+
"@sentry/node": "10.2.0",
22+
"@sentry/profiling-node": "10.2.0",
2323
"axios": "1.11.0",
2424
"cors": "2.8.5",
2525
"express": "5.1.0",
@@ -36,7 +36,7 @@
3636
"@types/node": "*",
3737
"@types/supertest": "6.0.3",
3838
"@types/ws": "8.18.1",
39-
"cross-env": "7.0.3",
39+
"cross-env": "10.0.0",
4040
"eslint-config-impress": "*",
4141
"nodemon": "3.1.10",
4242
"supertest": "7.1.4",

0 commit comments

Comments
 (0)