mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 04:47:29 -08:00
ci: Setup pnpm catalog to centralize depedency versions (no-changelog) (#9974)
This commit is contained in:
parent
1fca3af335
commit
a2d08846d0
|
@ -14,7 +14,7 @@
|
||||||
"start": "cd ..; pnpm start"
|
"start": "cd ..; pnpm start"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/lodash": "^4.14.195",
|
"@types/lodash": "catalog:",
|
||||||
"eslint-plugin-cypress": "^3.3.0",
|
"eslint-plugin-cypress": "^3.3.0",
|
||||||
"n8n-workflow": "workspace:*"
|
"n8n-workflow": "workspace:*"
|
||||||
},
|
},
|
||||||
|
@ -24,8 +24,8 @@
|
||||||
"cypress": "^13.11.0",
|
"cypress": "^13.11.0",
|
||||||
"cypress-otp": "^1.0.3",
|
"cypress-otp": "^1.0.3",
|
||||||
"cypress-real-events": "^1.12.0",
|
"cypress-real-events": "^1.12.0",
|
||||||
"lodash": "4.17.21",
|
"lodash": "catalog:",
|
||||||
"nanoid": "3.3.6",
|
"nanoid": "catalog:",
|
||||||
"start-server-and-test": "^2.0.3"
|
"start-server-and-test": "^2.0.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
13
package.json
13
package.json
|
@ -3,10 +3,10 @@
|
||||||
"version": "1.52.0",
|
"version": "1.52.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=18.10",
|
"node": ">=20.15",
|
||||||
"pnpm": ">=9.1"
|
"pnpm": ">=9.5"
|
||||||
},
|
},
|
||||||
"packageManager": "pnpm@9.1.4",
|
"packageManager": "pnpm@9.6.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"preinstall": "node scripts/block-npm-install.js",
|
"preinstall": "node scripts/block-npm-install.js",
|
||||||
"build": "turbo run build",
|
"build": "turbo run build",
|
||||||
|
@ -40,7 +40,6 @@
|
||||||
"@n8n_io/eslint-config": "workspace:*",
|
"@n8n_io/eslint-config": "workspace:*",
|
||||||
"@types/jest": "^29.5.3",
|
"@types/jest": "^29.5.3",
|
||||||
"@types/supertest": "^6.0.2",
|
"@types/supertest": "^6.0.2",
|
||||||
"@vitest/coverage-v8": "^1.6.0",
|
|
||||||
"jest": "^29.6.2",
|
"jest": "^29.6.2",
|
||||||
"jest-environment-jsdom": "^29.6.2",
|
"jest-environment-jsdom": "^29.6.2",
|
||||||
"jest-expect-message": "^1.1.3",
|
"jest-expect-message": "^1.1.3",
|
||||||
|
@ -56,11 +55,7 @@
|
||||||
"tsc-alias": "^1.8.7",
|
"tsc-alias": "^1.8.7",
|
||||||
"tsc-watch": "^6.0.4",
|
"tsc-watch": "^6.0.4",
|
||||||
"turbo": "2.0.6",
|
"turbo": "2.0.6",
|
||||||
"typescript": "*",
|
"typescript": "*"
|
||||||
"vite": "^5.2.12",
|
|
||||||
"vitest": "^1.6.0",
|
|
||||||
"vitest-mock-extended": "^1.3.1",
|
|
||||||
"vue-tsc": "^2.0.19"
|
|
||||||
},
|
},
|
||||||
"pnpm": {
|
"pnpm": {
|
||||||
"onlyBuiltDependencies": [
|
"onlyBuiltDependencies": [
|
||||||
|
|
|
@ -38,16 +38,20 @@
|
||||||
"@vueuse/core": "^10.11.0",
|
"@vueuse/core": "^10.11.0",
|
||||||
"highlight.js": "^11.8.0",
|
"highlight.js": "^11.8.0",
|
||||||
"markdown-it-link-attributes": "^4.0.1",
|
"markdown-it-link-attributes": "^4.0.1",
|
||||||
"uuid": "^8.3.2",
|
"uuid": "catalog:",
|
||||||
"vue": "^3.4.21",
|
"vue": "catalog:frontend",
|
||||||
"vue-markdown-render": "^2.1.1"
|
"vue-markdown-render": "^2.1.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@iconify-json/mdi": "^1.1.54",
|
"@iconify-json/mdi": "^1.1.54",
|
||||||
"@n8n/storybook": "workspace:*",
|
"@n8n/storybook": "workspace:*",
|
||||||
"@types/markdown-it": "^12.2.3",
|
"@types/markdown-it": "^12.2.3",
|
||||||
|
"@vitest/coverage-v8": "catalog:frontend",
|
||||||
"unplugin-icons": "^0.19.0",
|
"unplugin-icons": "^0.19.0",
|
||||||
"vite-plugin-dts": "^3.9.1"
|
"vite": "catalog:frontend",
|
||||||
|
"vitest": "catalog:frontend",
|
||||||
|
"vite-plugin-dts": "^3.9.1",
|
||||||
|
"vue-tsc": "catalog:frontend"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"README.md",
|
"README.md",
|
||||||
|
|
|
@ -20,6 +20,6 @@
|
||||||
"dist/**/*"
|
"dist/**/*"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"axios": "1.6.7"
|
"axios": "catalog:"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,6 +21,6 @@
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"reflect-metadata": "0.2.2",
|
"reflect-metadata": "0.2.2",
|
||||||
"typedi": "0.10.0"
|
"typedi": "catalog:"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -121,7 +121,7 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/basic-auth": "^1.1.3",
|
"@types/basic-auth": "catalog:",
|
||||||
"@types/cheerio": "^0.22.15",
|
"@types/cheerio": "^0.22.15",
|
||||||
"@types/html-to-text": "^9.0.1",
|
"@types/html-to-text": "^9.0.1",
|
||||||
"@types/json-schema": "^7.0.15",
|
"@types/json-schema": "^7.0.15",
|
||||||
|
@ -159,18 +159,18 @@
|
||||||
"@supabase/supabase-js": "2.43.4",
|
"@supabase/supabase-js": "2.43.4",
|
||||||
"@types/pg": "^8.11.3",
|
"@types/pg": "^8.11.3",
|
||||||
"@xata.io/client": "0.28.4",
|
"@xata.io/client": "0.28.4",
|
||||||
"basic-auth": "2.0.1",
|
"basic-auth": "catalog:",
|
||||||
"cheerio": "1.0.0-rc.12",
|
"cheerio": "1.0.0-rc.12",
|
||||||
"cohere-ai": "7.10.1",
|
"cohere-ai": "7.10.1",
|
||||||
"d3-dsv": "2.0.0",
|
"d3-dsv": "2.0.0",
|
||||||
"epub2": "3.0.2",
|
"epub2": "3.0.2",
|
||||||
"form-data": "4.0.0",
|
"form-data": "catalog:",
|
||||||
"generate-schema": "2.6.0",
|
"generate-schema": "2.6.0",
|
||||||
"html-to-text": "9.0.5",
|
"html-to-text": "9.0.5",
|
||||||
"jsdom": "^23.0.1",
|
"jsdom": "^23.0.1",
|
||||||
"json-schema-to-zod": "2.1.0",
|
"json-schema-to-zod": "2.1.0",
|
||||||
"langchain": "0.2.11",
|
"langchain": "0.2.11",
|
||||||
"lodash": "4.17.21",
|
"lodash": "catalog:",
|
||||||
"mammoth": "1.7.2",
|
"mammoth": "1.7.2",
|
||||||
"n8n-nodes-base": "workspace:*",
|
"n8n-nodes-base": "workspace:*",
|
||||||
"n8n-workflow": "workspace:*",
|
"n8n-workflow": "workspace:*",
|
||||||
|
|
|
@ -56,12 +56,12 @@
|
||||||
"@types/compression": "1.0.1",
|
"@types/compression": "1.0.1",
|
||||||
"@types/convict": "^6.1.1",
|
"@types/convict": "^6.1.1",
|
||||||
"@types/cookie-parser": "^1.4.2",
|
"@types/cookie-parser": "^1.4.2",
|
||||||
"@types/express": "^4.17.21",
|
"@types/express": "catalog:",
|
||||||
"@types/flat": "^5.0.5",
|
"@types/flat": "^5.0.5",
|
||||||
"@types/formidable": "^3.4.5",
|
"@types/formidable": "^3.4.5",
|
||||||
"@types/json-diff": "^1.0.0",
|
"@types/json-diff": "^1.0.0",
|
||||||
"@types/jsonwebtoken": "^9.0.6",
|
"@types/jsonwebtoken": "^9.0.6",
|
||||||
"@types/lodash": "^4.14.195",
|
"@types/lodash": "catalog:",
|
||||||
"@types/psl": "^1.1.0",
|
"@types/psl": "^1.1.0",
|
||||||
"@types/replacestream": "^4.0.1",
|
"@types/replacestream": "^4.0.1",
|
||||||
"@types/shelljs": "^0.8.11",
|
"@types/shelljs": "^0.8.11",
|
||||||
|
@ -69,10 +69,10 @@
|
||||||
"@types/superagent": "^8.1.7",
|
"@types/superagent": "^8.1.7",
|
||||||
"@types/swagger-ui-express": "^4.1.6",
|
"@types/swagger-ui-express": "^4.1.6",
|
||||||
"@types/syslog-client": "^1.1.2",
|
"@types/syslog-client": "^1.1.2",
|
||||||
"@types/uuid": "^8.3.2",
|
"@types/uuid": "catalog:",
|
||||||
"@types/validator": "^13.7.0",
|
"@types/validator": "^13.7.0",
|
||||||
"@types/ws": "^8.5.4",
|
"@types/ws": "^8.5.4",
|
||||||
"@types/xml2js": "^0.4.14",
|
"@types/xml2js": "catalog:",
|
||||||
"@types/yamljs": "^0.2.31",
|
"@types/yamljs": "^0.2.31",
|
||||||
"@vvo/tzdb": "^6.141.0",
|
"@vvo/tzdb": "^6.141.0",
|
||||||
"chokidar": "^3.5.2",
|
"chokidar": "^3.5.2",
|
||||||
|
@ -95,7 +95,7 @@
|
||||||
"@sentry/integrations": "7.87.0",
|
"@sentry/integrations": "7.87.0",
|
||||||
"@sentry/node": "7.87.0",
|
"@sentry/node": "7.87.0",
|
||||||
"aws4": "1.11.0",
|
"aws4": "1.11.0",
|
||||||
"axios": "1.6.7",
|
"axios": "catalog:",
|
||||||
"bcryptjs": "2.4.3",
|
"bcryptjs": "2.4.3",
|
||||||
"bull": "4.12.1",
|
"bull": "4.12.1",
|
||||||
"cache-manager": "5.2.3",
|
"cache-manager": "5.2.3",
|
||||||
|
@ -115,7 +115,7 @@
|
||||||
"express-openapi-validator": "5.1.6",
|
"express-openapi-validator": "5.1.6",
|
||||||
"express-prom-bundle": "6.6.0",
|
"express-prom-bundle": "6.6.0",
|
||||||
"express-rate-limit": "7.2.0",
|
"express-rate-limit": "7.2.0",
|
||||||
"fast-glob": "3.2.12",
|
"fast-glob": "catalog:",
|
||||||
"flat": "5.0.2",
|
"flat": "5.0.2",
|
||||||
"flatted": "3.2.7",
|
"flatted": "3.2.7",
|
||||||
"formidable": "3.5.1",
|
"formidable": "3.5.1",
|
||||||
|
@ -128,14 +128,14 @@
|
||||||
"jsonschema": "1.4.1",
|
"jsonschema": "1.4.1",
|
||||||
"jsonwebtoken": "9.0.2",
|
"jsonwebtoken": "9.0.2",
|
||||||
"ldapts": "4.2.6",
|
"ldapts": "4.2.6",
|
||||||
"lodash": "4.17.21",
|
"lodash": "catalog:",
|
||||||
"luxon": "3.3.0",
|
"luxon": "catalog:",
|
||||||
"mysql2": "3.10.0",
|
"mysql2": "3.10.0",
|
||||||
"n8n-core": "workspace:*",
|
"n8n-core": "workspace:*",
|
||||||
"n8n-editor-ui": "workspace:*",
|
"n8n-editor-ui": "workspace:*",
|
||||||
"n8n-nodes-base": "workspace:*",
|
"n8n-nodes-base": "workspace:*",
|
||||||
"n8n-workflow": "workspace:*",
|
"n8n-workflow": "workspace:*",
|
||||||
"nanoid": "3.3.6",
|
"nanoid": "catalog:",
|
||||||
"nodemailer": "6.9.9",
|
"nodemailer": "6.9.9",
|
||||||
"oauth-1.0a": "2.2.6",
|
"oauth-1.0a": "2.2.6",
|
||||||
"open": "7.4.2",
|
"open": "7.4.2",
|
||||||
|
@ -162,12 +162,12 @@
|
||||||
"sshpk": "1.17.0",
|
"sshpk": "1.17.0",
|
||||||
"swagger-ui-express": "5.0.0",
|
"swagger-ui-express": "5.0.0",
|
||||||
"syslog-client": "1.1.1",
|
"syslog-client": "1.1.1",
|
||||||
"typedi": "0.10.0",
|
"typedi": "catalog:",
|
||||||
"uuid": "8.3.2",
|
"uuid": "catalog:",
|
||||||
"validator": "13.7.0",
|
"validator": "13.7.0",
|
||||||
"winston": "3.8.2",
|
"winston": "3.8.2",
|
||||||
"ws": "8.17.1",
|
"ws": "8.17.1",
|
||||||
"xml2js": "0.6.2",
|
"xml2js": "catalog:",
|
||||||
"xmllint-wasm": "3.0.1",
|
"xmllint-wasm": "3.0.1",
|
||||||
"yamljs": "0.3.0",
|
"yamljs": "0.3.0",
|
||||||
"zod": "3.22.4"
|
"zod": "3.22.4"
|
||||||
|
|
|
@ -28,23 +28,23 @@
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/aws4": "^1.5.1",
|
"@types/aws4": "^1.5.1",
|
||||||
"@types/concat-stream": "^2.0.0",
|
"@types/concat-stream": "^2.0.0",
|
||||||
"@types/express": "^4.17.21",
|
"@types/express": "catalog:",
|
||||||
"@types/lodash": "^4.14.195",
|
"@types/lodash": "catalog:",
|
||||||
"@types/mime-types": "^2.1.0",
|
"@types/mime-types": "^2.1.0",
|
||||||
"@types/uuid": "^8.3.2",
|
"@types/uuid": "catalog:",
|
||||||
"@types/xml2js": "^0.4.14"
|
"@types/xml2js": "catalog:"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@n8n/client-oauth2": "workspace:*",
|
"@n8n/client-oauth2": "workspace:*",
|
||||||
"aws4": "1.11.0",
|
"aws4": "1.11.0",
|
||||||
"axios": "1.6.7",
|
"axios": "catalog:",
|
||||||
"concat-stream": "2.0.0",
|
"concat-stream": "2.0.0",
|
||||||
"cron": "3.1.7",
|
"cron": "3.1.7",
|
||||||
"fast-glob": "3.2.12",
|
"fast-glob": "catalog:",
|
||||||
"file-type": "16.5.4",
|
"file-type": "16.5.4",
|
||||||
"form-data": "4.0.0",
|
"form-data": "catalog:",
|
||||||
"lodash": "4.17.21",
|
"lodash": "catalog:",
|
||||||
"luxon": "^3.4.4",
|
"luxon": "catalog:",
|
||||||
"mime-types": "2.1.35",
|
"mime-types": "2.1.35",
|
||||||
"n8n-workflow": "workspace:*",
|
"n8n-workflow": "workspace:*",
|
||||||
"oauth-1.0a": "2.2.6",
|
"oauth-1.0a": "2.2.6",
|
||||||
|
@ -52,8 +52,8 @@
|
||||||
"pretty-bytes": "5.6.0",
|
"pretty-bytes": "5.6.0",
|
||||||
"qs": "6.11.0",
|
"qs": "6.11.0",
|
||||||
"ssh2": "1.15.0",
|
"ssh2": "1.15.0",
|
||||||
"typedi": "0.10.0",
|
"typedi": "catalog:",
|
||||||
"uuid": "8.3.2",
|
"uuid": "catalog:",
|
||||||
"xml2js": "0.6.2"
|
"xml2js": "catalog:"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,13 +27,18 @@
|
||||||
"@types/markdown-it-link-attributes": "^3.0.1",
|
"@types/markdown-it-link-attributes": "^3.0.1",
|
||||||
"@types/sanitize-html": "^2.11.0",
|
"@types/sanitize-html": "^2.11.0",
|
||||||
"@vitejs/plugin-vue": "^5.0.4",
|
"@vitejs/plugin-vue": "^5.0.4",
|
||||||
|
"@vitest/coverage-v8": "catalog:frontend",
|
||||||
"@vue/test-utils": "^2.4.3",
|
"@vue/test-utils": "^2.4.3",
|
||||||
"autoprefixer": "^10.4.19",
|
"autoprefixer": "^10.4.19",
|
||||||
"postcss": "^8.4.38",
|
"postcss": "^8.4.38",
|
||||||
"sass": "^1.64.1",
|
"sass": "^1.64.1",
|
||||||
"tailwindcss": "^3.4.3",
|
"tailwindcss": "^3.4.3",
|
||||||
"unplugin-icons": "^0.19.0",
|
"unplugin-icons": "^0.19.0",
|
||||||
"unplugin-vue-components": "^0.27.2"
|
"unplugin-vue-components": "^0.27.2",
|
||||||
|
"vite": "catalog:frontend",
|
||||||
|
"vitest": "catalog:frontend",
|
||||||
|
"vitest-mock-extended": "catalog:frontend",
|
||||||
|
"vue-tsc": "catalog:frontend"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@fortawesome/fontawesome-svg-core": "^1.2.36",
|
"@fortawesome/fontawesome-svg-core": "^1.2.36",
|
||||||
|
@ -45,7 +50,7 @@
|
||||||
"markdown-it-link-attributes": "^4.0.1",
|
"markdown-it-link-attributes": "^4.0.1",
|
||||||
"markdown-it-task-lists": "^2.1.1",
|
"markdown-it-task-lists": "^2.1.1",
|
||||||
"sanitize-html": "2.12.1",
|
"sanitize-html": "2.12.1",
|
||||||
"vue": "^3.4.21",
|
"vue": "catalog:frontend",
|
||||||
"vue-boring-avatars": "^1.3.0",
|
"vue-boring-avatars": "^1.3.0",
|
||||||
"vue-router": "^4.2.2",
|
"vue-router": "^4.2.2",
|
||||||
"xss": "^1.0.14"
|
"xss": "^1.0.14"
|
||||||
|
|
|
@ -43,7 +43,7 @@
|
||||||
"@vue-flow/node-resizer": "^1.4.0",
|
"@vue-flow/node-resizer": "^1.4.0",
|
||||||
"@vueuse/components": "^10.11.0",
|
"@vueuse/components": "^10.11.0",
|
||||||
"@vueuse/core": "^10.11.0",
|
"@vueuse/core": "^10.11.0",
|
||||||
"axios": "1.6.7",
|
"axios": "catalog:",
|
||||||
"chart.js": "^4.4.0",
|
"chart.js": "^4.4.0",
|
||||||
"codemirror-lang-html-n8n": "^1.0.0",
|
"codemirror-lang-html-n8n": "^1.0.0",
|
||||||
"dateformat": "^3.0.3",
|
"dateformat": "^3.0.3",
|
||||||
|
@ -55,7 +55,7 @@
|
||||||
"humanize-duration": "^3.27.2",
|
"humanize-duration": "^3.27.2",
|
||||||
"jsonpath": "^1.1.1",
|
"jsonpath": "^1.1.1",
|
||||||
"lodash-es": "^4.17.21",
|
"lodash-es": "^4.17.21",
|
||||||
"luxon": "^3.3.0",
|
"luxon": "catalog:",
|
||||||
"n8n-design-system": "workspace:*",
|
"n8n-design-system": "workspace:*",
|
||||||
"n8n-workflow": "workspace:*",
|
"n8n-workflow": "workspace:*",
|
||||||
"pinia": "^2.1.6",
|
"pinia": "^2.1.6",
|
||||||
|
@ -63,9 +63,9 @@
|
||||||
"qrcode.vue": "^3.3.4",
|
"qrcode.vue": "^3.3.4",
|
||||||
"stream-browserify": "^3.0.0",
|
"stream-browserify": "^3.0.0",
|
||||||
"timeago.js": "^4.0.2",
|
"timeago.js": "^4.0.2",
|
||||||
"uuid": "^8.3.2",
|
"uuid": "catalog:",
|
||||||
"v3-infinite-loading": "^1.2.2",
|
"v3-infinite-loading": "^1.2.2",
|
||||||
"vue": "^3.4.21",
|
"vue": "catalog:frontend",
|
||||||
"vue-agile": "^2.0.0",
|
"vue-agile": "^2.0.0",
|
||||||
"vue-chartjs": "^5.2.0",
|
"vue-chartjs": "^5.2.0",
|
||||||
"vue-i18n": "^9.2.2",
|
"vue-i18n": "^9.2.2",
|
||||||
|
@ -86,11 +86,16 @@
|
||||||
"@types/jsonpath": "^0.2.0",
|
"@types/jsonpath": "^0.2.0",
|
||||||
"@types/lodash-es": "^4.17.6",
|
"@types/lodash-es": "^4.17.6",
|
||||||
"@types/luxon": "^3.2.0",
|
"@types/luxon": "^3.2.0",
|
||||||
"@types/uuid": "^8.3.2",
|
"@types/uuid": "catalog:",
|
||||||
|
"@vitest/coverage-v8": "catalog:frontend",
|
||||||
"cross-env": "^7.0.3",
|
"cross-env": "^7.0.3",
|
||||||
"miragejs": "^0.1.48",
|
"miragejs": "^0.1.48",
|
||||||
"unplugin-icons": "^0.19.0",
|
"unplugin-icons": "^0.19.0",
|
||||||
"unplugin-vue-components": "^0.27.2"
|
"unplugin-vue-components": "^0.27.2",
|
||||||
|
"vite": "catalog:frontend",
|
||||||
|
"vitest": "catalog:frontend",
|
||||||
|
"vitest-mock-extended": "catalog:frontend",
|
||||||
|
"vue-tsc": "catalog:frontend"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@fortawesome/fontawesome-svg-core": "*",
|
"@fortawesome/fontawesome-svg-core": "*",
|
||||||
|
|
|
@ -40,12 +40,12 @@
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@oclif/core": "4.0.7",
|
"@oclif/core": "4.0.7",
|
||||||
"change-case": "^4.1.1",
|
"change-case": "^4.1.1",
|
||||||
"fast-glob": "^3.2.5",
|
"fast-glob": "catalog:",
|
||||||
"inquirer": "^7.0.1",
|
"inquirer": "^7.0.1",
|
||||||
"n8n-core": "workspace:*",
|
"n8n-core": "workspace:*",
|
||||||
"n8n-workflow": "workspace:*",
|
"n8n-workflow": "workspace:*",
|
||||||
"replace-in-file": "^6.0.0",
|
"replace-in-file": "^6.0.0",
|
||||||
"tmp-promise": "^3.0.3",
|
"tmp-promise": "^3.0.3",
|
||||||
"typedi": "^0.10.0"
|
"typedi": "catalog:"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -802,15 +802,15 @@
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/amqplib": "^0.10.1",
|
"@types/amqplib": "^0.10.1",
|
||||||
"@types/aws4": "^1.5.1",
|
"@types/aws4": "^1.5.1",
|
||||||
"@types/basic-auth": "^1.1.3",
|
"@types/basic-auth": "catalog:",
|
||||||
"@types/cheerio": "^0.22.15",
|
"@types/cheerio": "^0.22.15",
|
||||||
"@types/eventsource": "^1.1.2",
|
"@types/eventsource": "^1.1.2",
|
||||||
"@types/express": "^4.17.21",
|
"@types/express": "catalog:",
|
||||||
"@types/html-to-text": "^9.0.1",
|
"@types/html-to-text": "^9.0.1",
|
||||||
"@types/gm": "^1.25.0",
|
"@types/gm": "^1.25.0",
|
||||||
"@types/js-nacl": "^1.3.0",
|
"@types/js-nacl": "^1.3.0",
|
||||||
"@types/jsonwebtoken": "^9.0.6",
|
"@types/jsonwebtoken": "^9.0.6",
|
||||||
"@types/lodash": "^4.14.195",
|
"@types/lodash": "catalog:",
|
||||||
"@types/lossless-json": "^1.0.0",
|
"@types/lossless-json": "^1.0.0",
|
||||||
"@types/mailparser": "^3.4.4",
|
"@types/mailparser": "^3.4.4",
|
||||||
"@types/mime-types": "^2.1.0",
|
"@types/mime-types": "^2.1.0",
|
||||||
|
@ -821,8 +821,8 @@
|
||||||
"@types/showdown": "^1.9.4",
|
"@types/showdown": "^1.9.4",
|
||||||
"@types/snowflake-sdk": "^1.6.20",
|
"@types/snowflake-sdk": "^1.6.20",
|
||||||
"@types/ssh2-sftp-client": "^5.1.0",
|
"@types/ssh2-sftp-client": "^5.1.0",
|
||||||
"@types/uuid": "^8.3.2",
|
"@types/uuid": "catalog:",
|
||||||
"@types/xml2js": "^0.4.14",
|
"@types/xml2js": "catalog:",
|
||||||
"eslint-plugin-n8n-nodes-base": "^1.16.0",
|
"eslint-plugin-n8n-nodes-base": "^1.16.0",
|
||||||
"n8n-core": "workspace:*"
|
"n8n-core": "workspace:*"
|
||||||
},
|
},
|
||||||
|
@ -833,7 +833,7 @@
|
||||||
"amqplib": "0.10.3",
|
"amqplib": "0.10.3",
|
||||||
"alasql": "^4.4.0",
|
"alasql": "^4.4.0",
|
||||||
"aws4": "1.11.0",
|
"aws4": "1.11.0",
|
||||||
"basic-auth": "2.0.1",
|
"basic-auth": "catalog:",
|
||||||
"change-case": "4.1.2",
|
"change-case": "4.1.2",
|
||||||
"cheerio": "1.0.0-rc.6",
|
"cheerio": "1.0.0-rc.6",
|
||||||
"chokidar": "3.5.2",
|
"chokidar": "3.5.2",
|
||||||
|
@ -842,7 +842,7 @@
|
||||||
"currency-codes": "2.1.0",
|
"currency-codes": "2.1.0",
|
||||||
"eventsource": "2.0.2",
|
"eventsource": "2.0.2",
|
||||||
"html-to-text": "9.0.5",
|
"html-to-text": "9.0.5",
|
||||||
"fast-glob": "3.2.12",
|
"fast-glob": "catalog:",
|
||||||
"fflate": "0.7.4",
|
"fflate": "0.7.4",
|
||||||
"get-system-fonts": "2.0.2",
|
"get-system-fonts": "2.0.2",
|
||||||
"gm": "1.25.0",
|
"gm": "1.25.0",
|
||||||
|
@ -854,9 +854,9 @@
|
||||||
"jsonwebtoken": "9.0.2",
|
"jsonwebtoken": "9.0.2",
|
||||||
"kafkajs": "1.16.0",
|
"kafkajs": "1.16.0",
|
||||||
"ldapts": "4.2.6",
|
"ldapts": "4.2.6",
|
||||||
"lodash": "4.17.21",
|
"lodash": "catalog:",
|
||||||
"lossless-json": "1.0.5",
|
"lossless-json": "1.0.5",
|
||||||
"luxon": "3.3.0",
|
"luxon": "catalog:",
|
||||||
"mailparser": "3.6.7",
|
"mailparser": "3.6.7",
|
||||||
"minifaker": "1.34.1",
|
"minifaker": "1.34.1",
|
||||||
"moment-timezone": "0.5.37",
|
"moment-timezone": "0.5.37",
|
||||||
|
@ -886,9 +886,9 @@
|
||||||
"ssh2-sftp-client": "7.2.3",
|
"ssh2-sftp-client": "7.2.3",
|
||||||
"tmp-promise": "3.0.3",
|
"tmp-promise": "3.0.3",
|
||||||
"ts-ics": "^1.2.2",
|
"ts-ics": "^1.2.2",
|
||||||
"typedi": "0.10.0",
|
"typedi": "catalog:",
|
||||||
"uuid": "8.3.2",
|
"uuid": "catalog:",
|
||||||
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.2/xlsx-0.20.2.tgz",
|
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.2/xlsx-0.20.2.tgz",
|
||||||
"xml2js": "0.6.2"
|
"xml2js": "catalog:"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,31 +31,31 @@
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@langchain/core": "^0.2.18",
|
"@langchain/core": "^0.2.18",
|
||||||
"@types/deep-equal": "^1.0.1",
|
"@types/deep-equal": "^1.0.1",
|
||||||
"@types/express": "^4.17.21",
|
"@types/express": "catalog:",
|
||||||
"@types/jmespath": "^0.15.0",
|
"@types/jmespath": "^0.15.0",
|
||||||
"@types/lodash": "^4.14.195",
|
"@types/lodash": "catalog:",
|
||||||
"@types/luxon": "^3.2.0",
|
"@types/luxon": "^3.2.0",
|
||||||
"@types/md5": "^2.3.5",
|
"@types/md5": "^2.3.5",
|
||||||
"@types/xml2js": "^0.4.14"
|
"@types/xml2js": "catalog:"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@n8n/tournament": "1.0.2",
|
"@n8n/tournament": "1.0.2",
|
||||||
"@n8n_io/riot-tmpl": "4.0.0",
|
"@n8n_io/riot-tmpl": "4.0.0",
|
||||||
"ast-types": "0.15.2",
|
"ast-types": "0.15.2",
|
||||||
"axios": "1.6.7",
|
"axios": "catalog:",
|
||||||
"callsites": "3.1.0",
|
"callsites": "3.1.0",
|
||||||
"deep-equal": "2.2.0",
|
"deep-equal": "2.2.0",
|
||||||
"esprima-next": "5.8.4",
|
"esprima-next": "5.8.4",
|
||||||
"form-data": "4.0.0",
|
"form-data": "catalog:",
|
||||||
"jmespath": "0.16.0",
|
"jmespath": "0.16.0",
|
||||||
"js-base64": "3.7.2",
|
"js-base64": "3.7.2",
|
||||||
"jssha": "3.3.1",
|
"jssha": "3.3.1",
|
||||||
"lodash": "4.17.21",
|
"lodash": "catalog:",
|
||||||
"luxon": "3.3.0",
|
"luxon": "catalog:",
|
||||||
"md5": "2.3.0",
|
"md5": "2.3.0",
|
||||||
"recast": "0.21.5",
|
"recast": "0.21.5",
|
||||||
"title-case": "3.0.3",
|
"title-case": "3.0.3",
|
||||||
"transliteration": "2.3.5",
|
"transliteration": "2.3.5",
|
||||||
"xml2js": "0.6.2"
|
"xml2js": "catalog:"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
695
pnpm-lock.yaml
695
pnpm-lock.yaml
File diff suppressed because it is too large
Load diff
|
@ -3,3 +3,29 @@ packages:
|
||||||
- packages/@n8n/*
|
- packages/@n8n/*
|
||||||
- packages/@n8n_io/*
|
- packages/@n8n_io/*
|
||||||
- cypress
|
- cypress
|
||||||
|
|
||||||
|
catalog:
|
||||||
|
'@types/basic-auth': ^1.1.3
|
||||||
|
'@types/express': ^4.17.21
|
||||||
|
'@types/lodash': ^4.14.195
|
||||||
|
'@types/uuid': ^8.3.2
|
||||||
|
'@types/xml2js': ^0.4.14
|
||||||
|
axios: 1.6.7
|
||||||
|
basic-auth: 2.0.1
|
||||||
|
fast-glob: 3.2.12
|
||||||
|
form-data: 4.0.0
|
||||||
|
lodash: 4.17.21
|
||||||
|
luxon: 3.4.4
|
||||||
|
nanoid: 3.3.6
|
||||||
|
typedi: 0.10.0
|
||||||
|
uuid: 8.3.2
|
||||||
|
xml2js: 0.6.2
|
||||||
|
|
||||||
|
catalogs:
|
||||||
|
frontend:
|
||||||
|
'@vitest/coverage-v8': ^1.6.0
|
||||||
|
vite: ^5.2.12
|
||||||
|
vitest: ^1.6.0
|
||||||
|
vitest-mock-extended: ^1.3.1
|
||||||
|
vue: ^3.4.21
|
||||||
|
vue-tsc: ^2.0.19
|
||||||
|
|
Loading…
Reference in a new issue