mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
beedfb609c
* Draft setup * ⚡ Implemented expression evaluation in Postgres node, minor SQL editor UI improvements, minor refacring * ⚡ Added initial version of expression preview for SQL editor * ⚡ Linking npm package for codemirror sql grammar instead of a local file * ⚡ Moving expression editor wrapper elements to the component * ⚡ Using expression preview in SQL editor * Use SQL parser skipping whitespace * ✨ Added support for custom skipped segments specification * ✨ Fixing highlight problems with dots and expressions that resolve to zero * 👕 Fixing linting error * ✨ Added current item support * ⚡ Added expression support to more nodes with sql editor * ✨ Added expression support for other nodes * ✨ Implemented different SQL dialect support * 🐛 Fixing hard-coded parameter names for editors * ✨ Fixing preview for nested queries, updating query when input data changes, adding keyboard shortcut to toggle comments * ✨ Adding a custom automcomplete notice for different editors * ⚡ Updating SQL autocomplete notice * ✅ Added unit tests for SQL editor * ⚡ Using latest grammar * 🐛 Fixing code node editor rendering * 💄 SQL preview dropdown matches editor width. Removing unnecessary css * ⚡ Addressing PR review feedback * 👌 Addressing PR review feedback pt2 * 👌 Added path alias for utils in nodes-base package * 👌 Addressing more PR review feedback * ✅ Adding tests for `getResolvables` utility function * ⚡Fixing lodash imports * 👌 Better focus handling, adding more plugins to the editor, other minor imrovements * ⚡ Not showing SQL autocomplete suggestions inside expressions * ⚡ Using npm package for sql grammar * ⚡ Removing autocomplete notice, adding line highlight on syntax error * 👌 Addressing code review feedback --------- Co-authored-by: Milorad Filipovic <milorad@n8n.io>
99 lines
3.2 KiB
JSON
99 lines
3.2 KiB
JSON
{
|
|
"name": "n8n-editor-ui",
|
|
"version": "0.200.0",
|
|
"description": "Workflow Editor UI for n8n",
|
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
"homepage": "https://n8n.io",
|
|
"author": {
|
|
"name": "Jan Oberhauser",
|
|
"email": "jan@n8n.io"
|
|
},
|
|
"main": "index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/n8n-io/n8n.git"
|
|
},
|
|
"scripts": {
|
|
"clean": "rimraf dist .turbo",
|
|
"build": "cross-env VUE_APP_PUBLIC_PATH=\"/{{BASE_PATH}}/\" NODE_OPTIONS=\"--max-old-space-size=8192\" vite build",
|
|
"typecheck": "vue-tsc --emitDeclarationOnly",
|
|
"dev": "pnpm serve",
|
|
"lint": "eslint --quiet --ext .js,.ts,.vue src",
|
|
"lintfix": "eslint --ext .js,.ts,.vue src --fix",
|
|
"format": "prettier --write . --ignore-path ../../.prettierignore",
|
|
"serve": "cross-env VUE_APP_URL_BASE_API=http://localhost:5678/ vite --host 0.0.0.0 --port 8080 dev",
|
|
"test": "vitest run --coverage",
|
|
"test:dev": "vitest"
|
|
},
|
|
"dependencies": {
|
|
"@codemirror/autocomplete": "^6.4.0",
|
|
"@codemirror/commands": "^6.1.0",
|
|
"@codemirror/lang-javascript": "^6.1.2",
|
|
"@codemirror/lang-json": "^6.0.1",
|
|
"@codemirror/lang-python": "^6.1.2",
|
|
"@codemirror/language": "^6.2.1",
|
|
"@codemirror/lint": "^6.0.0",
|
|
"@codemirror/state": "^6.1.4",
|
|
"@codemirror/view": "^6.5.1",
|
|
"@fontsource/open-sans": "^4.5.0",
|
|
"@fortawesome/fontawesome-svg-core": "^1.2.35",
|
|
"@fortawesome/free-regular-svg-icons": "^6.1.1",
|
|
"@fortawesome/free-solid-svg-icons": "^5.15.3",
|
|
"@fortawesome/vue-fontawesome": "^2.0.10",
|
|
"@jsplumb/browser-ui": "^5.13.2",
|
|
"@jsplumb/common": "^5.13.2",
|
|
"@jsplumb/connector-bezier": "^5.13.2",
|
|
"@jsplumb/core": "^5.13.2",
|
|
"@jsplumb/util": "^5.13.2",
|
|
"@n8n/codemirror-lang-sql": "^1.0.0",
|
|
"axios": "^0.21.1",
|
|
"codemirror-lang-html-n8n": "^1.0.0",
|
|
"codemirror-lang-n8n-expression": "^0.2.0",
|
|
"copy-to-clipboard": "^3.3.3",
|
|
"dateformat": "^3.0.3",
|
|
"esprima-next": "5.8.4",
|
|
"fast-json-stable-stringify": "^2.1.0",
|
|
"file-saver": "^2.0.2",
|
|
"flatted": "^3.2.4",
|
|
"humanize-duration": "^3.27.2",
|
|
"jsonpath": "^1.1.1",
|
|
"lodash-es": "^4.17.21",
|
|
"luxon": "^3.3.0",
|
|
"n8n-design-system": "workspace:*",
|
|
"n8n-workflow": "workspace:*",
|
|
"normalize-wheel": "^1.0.1",
|
|
"pinia": "^2.0.22",
|
|
"prettier": "^2.8.3",
|
|
"stream-browserify": "^3.0.0",
|
|
"timeago.js": "^4.0.2",
|
|
"uuid": "^8.3.2",
|
|
"v-click-outside": "^3.1.2",
|
|
"vue": "^2.7.14",
|
|
"vue-agile": "^2.0.0",
|
|
"vue-i18n": "^8.26.7",
|
|
"vue-infinite-loading": "^2.4.5",
|
|
"vue-json-pretty": "1.9.3",
|
|
"vue-router": "^3.6.5",
|
|
"vue2-teleport": "^1.0.1",
|
|
"vue2-touch-events": "^3.2.1",
|
|
"xss": "^1.0.14"
|
|
},
|
|
"devDependencies": {
|
|
"@faker-js/faker": "^7.6.0",
|
|
"@pinia/testing": "^0.0.14",
|
|
"@sentry/vite-plugin": "^0.4.0",
|
|
"@testing-library/jest-dom": "^5.16.5",
|
|
"@testing-library/user-event": "^14.4.3",
|
|
"@testing-library/vue": "^5.8.3",
|
|
"@types/canvas-confetti": "^1.6.0",
|
|
"@types/dateformat": "^3.0.0",
|
|
"@types/file-saver": "^2.0.1",
|
|
"@types/humanize-duration": "^3.27.1",
|
|
"@types/jsonpath": "^0.2.0",
|
|
"@types/lodash-es": "^4.17.6",
|
|
"@types/luxon": "^3.2.0",
|
|
"@types/uuid": "^8.3.2",
|
|
"miragejs": "^0.1.47"
|
|
}
|
|
}
|