mirror of
https://github.com/suitenumerique/docs.git
synced 2026-05-05 06:32:21 +02:00
Added: - ✨(backend) annotate number of accesses on documents in list view - ✨(backend) allow users to mark/unmark documents as favorite Changed: - 🔒️(collaboration) increase collaboration access security - 🔨(frontend) encapsulated title to its own component - ⚡️(backend) optimize number of queries on document list view - ♻️(frontend) stop to use provider with version - 🚚(collaboration) change the websocket key name Fixed: - 🐛(frontend) fix initial content with collaboration - 🐛(frontend) Fix hidden menu on Firefox - 🐛(backend) fix sanitize problem IA
45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"name": "server-y-provider",
|
|
"version": "1.9.0",
|
|
"description": "Y.js provider for docs",
|
|
"repository": "https://github.com/numerique-gouv/impress",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.build.json && tsc-alias",
|
|
"dev": "nodemon --config nodemon.json",
|
|
"start": "node ./dist/start-server.js",
|
|
"lint": "eslint . --ext .ts",
|
|
"test": "jest"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"dependencies": {
|
|
"@hocuspocus/server": "2.14.0",
|
|
"@sentry/node": "8.41.0",
|
|
"@sentry/profiling-node": "8.41.0",
|
|
"express": "4.21.1",
|
|
"express-ws": "5.0.2",
|
|
"y-protocols": "1.0.6"
|
|
},
|
|
"devDependencies": {
|
|
"@hocuspocus/provider": "2.14.0",
|
|
"@types/express": "5.0.0",
|
|
"@types/express-ws": "3.0.5",
|
|
"@types/jest": "29.5.14",
|
|
"@types/node": "*",
|
|
"@types/supertest": "6.0.2",
|
|
"@types/ws": "8.5.13",
|
|
"eslint-config-impress": "*",
|
|
"jest": "29.7.0",
|
|
"nodemon": "3.1.7",
|
|
"supertest": "7.0.0",
|
|
"ts-jest": "29.2.5",
|
|
"ts-node": "10.9.2",
|
|
"tsc-alias": "1.8.10",
|
|
"typescript": "*",
|
|
"ws": "8.18.0"
|
|
}
|
|
}
|