fix: move dependency to editor-client

This commit is contained in:
Rotzbua 2024-05-14 22:14:01 +02:00
parent 56fe2801eb
commit a693d25664
No known key found for this signature in database
GPG Key ID: C69022D529C17845
2 changed files with 9 additions and 4 deletions

View File

@ -41,6 +41,7 @@
"cors": "2.8.5",
"cronosjs": "1.7.1",
"denque": "2.1.0",
"dompurify": "2.4.1",
"express": "4.19.2",
"express-session": "1.17.3",
"form-data": "4.0.0",
@ -56,8 +57,10 @@
"json-stringify-safe": "5.0.1",
"jsonata": "2.0.4",
"lodash.clonedeep": "^4.5.0",
"marked": "4.3.0",
"media-typer": "1.1.0",
"memorystore": "1.6.7",
"mermaid": "^10.4.0",
"mime": "3.0.0",
"moment": "2.29.4",
"moment-timezone": "0.5.43",
@ -86,7 +89,6 @@
"bcrypt": "5.1.1"
},
"devDependencies": {
"dompurify": "2.4.1",
"grunt": "1.6.1",
"grunt-chmod": "~1.1.1",
"grunt-cli": "~1.4.3",
@ -109,8 +111,6 @@
"i18next-http-backend": "1.4.1",
"jquery-i18next": "1.2.1",
"jsdoc-nr-template": "github:node-red/jsdoc-nr-template",
"marked": "4.3.0",
"mermaid": "^10.4.0",
"minami": "1.2.3",
"mocha": "9.2.2",
"node-red-node-test-helper": "^0.3.3",

View File

@ -2,6 +2,7 @@
"name": "@node-red/editor-client",
"version": "4.0.0-beta.2",
"license": "Apache-2.0",
"main": "./index.js",
"repository": {
"type": "git",
"url": "https://github.com/node-red/node-red.git"
@ -14,5 +15,9 @@
"name": "Dave Conway-Jones"
}
],
"main": "./index.js"
"dependencies": {
"dompurify": "2.4.1",
"marked": "4.3.0",
"mermaid": "^10.4.0"
}
}