We have added the export to pdf and docx feature to the front side. Thanks to that, the images are now correctly exported even when the doc is private. To be able to export the doc, the data must be in blocknote format, for legacy purpose, we have to convert the template to blocknote format before exporting it.
28 lines
723 B
JSON
28 lines
723 B
JSON
{
|
|
"name": "app-e2e",
|
|
"version": "2.0.1",
|
|
"private": true,
|
|
"scripts": {
|
|
"lint": "eslint . --ext .ts",
|
|
"install-playwright": "playwright install --with-deps",
|
|
"test": "playwright test",
|
|
"test:ui": "yarn test --ui",
|
|
"test:ui::firefox": "yarn test:ui --project=firefox",
|
|
"test:ui::webkit": "yarn test:ui --project=webkit",
|
|
"test:ui::chromium": "yarn test:ui --project=chromium"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "1.49.1",
|
|
"@types/luxon": "3.4.2",
|
|
"@types/node": "*",
|
|
"@types/pdf-parse": "1.1.4",
|
|
"eslint-config-impress": "*",
|
|
"luxon": "3.5.0",
|
|
"typescript": "*"
|
|
},
|
|
"dependencies": {
|
|
"convert-stream": "1.0.2",
|
|
"pdf-parse": "1.1.1"
|
|
}
|
|
}
|