2019-06-23 10:35:23 +00:00
{
2024-01-26 09:28:19 +00:00
"name" : "n8n-monorepo" ,
2025-06-02 14:46:22 +00:00
"version" : "1.97.0" ,
2020-04-06 18:04:59 +00:00
"private" : true ,
2022-11-09 16:32:05 +00:00
"engines" : {
2024-07-30 11:27:15 +00:00
"node" : ">=20.15" ,
2025-02-12 17:46:43 +00:00
"pnpm" : ">=10.2.1"
2022-11-09 16:32:05 +00:00
} ,
2025-02-12 17:46:43 +00:00
"packageManager" : "pnpm@10.2.1" ,
2020-04-06 18:04:59 +00:00
"scripts" : {
2024-09-17 14:37:07 +00:00
"prepare" : "node scripts/prepare.mjs" ,
2022-11-21 11:53:11 +00:00
"preinstall" : "node scripts/block-npm-install.js" ,
2022-08-06 20:55:51 +00:00
"build" : "turbo run build" ,
2024-07-05 15:43:52 +00:00
"build:backend" : "turbo run build:backend" ,
"build:frontend" : "turbo run build:frontend" ,
"build:nodes" : "turbo run build:nodes" ,
2024-07-30 18:24:01 +00:00
"typecheck" : "turbo typecheck" ,
2025-02-28 12:28:30 +00:00
"dev" : "turbo run dev --parallel --env-mode=loose --filter=!@n8n/design-system --filter=!@n8n/chat --filter=!@n8n/task-runner" ,
"dev:be" : "turbo run dev --parallel --env-mode=loose --filter=!@n8n/design-system --filter=!@n8n/chat --filter=!@n8n/task-runner --filter=!n8n-editor-ui" ,
2024-07-08 09:38:14 +00:00
"dev:ai" : "turbo run dev --parallel --env-mode=loose --filter=@n8n/nodes-langchain --filter=n8n --filter=n8n-core" ,
2025-02-28 12:28:30 +00:00
"dev:fe" : "run-p start \"dev:fe:editor --filter=@n8n/design-system\"" ,
2025-01-08 12:16:56 +00:00
"dev:fe:editor" : "turbo run dev --parallel --env-mode=loose --filter=n8n-editor-ui" ,
"dev:e2e" : "cd cypress && pnpm run test:e2e:dev" ,
2025-04-02 08:04:05 +00:00
"debug:flaky:e2e" : "cd cypress && pnpm run test:flaky" ,
2025-01-08 12:16:56 +00:00
"dev:e2e:server" : "run-p start dev:fe:editor" ,
2022-11-09 16:32:05 +00:00
"clean" : "turbo run clean --parallel" ,
2024-09-03 12:35:13 +00:00
"reset" : "node scripts/ensure-zx.mjs && zx scripts/reset.mjs" ,
2022-08-19 13:34:02 +00:00
"format" : "turbo run format && node scripts/format.mjs" ,
2024-09-17 12:10:22 +00:00
"format:check" : "turbo run format:check" ,
2022-08-06 20:55:51 +00:00
"lint" : "turbo run lint" ,
"lintfix" : "turbo run lintfix" ,
2024-07-05 15:43:52 +00:00
"lint:backend" : "turbo run lint:backend" ,
"lint:nodes" : "turbo run lint:nodes" ,
"lint:frontend" : "turbo run lint:frontend" ,
2021-06-29 05:28:02 +00:00
"optimize-svg" : "find ./packages -name '*.svg' ! -name 'pipedrive.svg' -print0 | xargs -0 -P16 -L20 npx svgo" ,
2020-04-06 18:04:59 +00:00
"start" : "run-script-os" ,
"start:default" : "cd packages/cli/bin && ./n8n" ,
2022-08-22 15:33:13 +00:00
"start:tunnel" : "./packages/cli/bin/n8n start --tunnel" ,
2020-04-06 18:04:59 +00:00
"start:windows" : "cd packages/cli/bin && n8n" ,
2025-04-04 20:58:08 +00:00
"test" : "JEST_JUNIT_CLASSNAME={filepath} turbo run test" ,
2024-07-05 15:43:52 +00:00
"test:backend" : "turbo run test:backend --concurrency=1" ,
"test:frontend" : "turbo run test:frontend --concurrency=1" ,
"test:nodes" : "turbo run test:nodes --concurrency=1" ,
2024-01-19 17:03:11 +00:00
"watch" : "turbo run watch --parallel" ,
2021-05-02 03:43:01 +00:00
"webhook" : "./packages/cli/bin/n8n webhook" ,
2024-06-10 13:49:50 +00:00
"worker" : "./packages/cli/bin/n8n worker"
2022-11-09 16:32:05 +00:00
} ,
2020-04-06 18:04:59 +00:00
"devDependencies" : {
2024-09-17 12:10:22 +00:00
"@biomejs/biome" : "^1.9.0" ,
2025-02-26 12:45:35 +00:00
"@n8n/eslint-config" : "workspace:*" ,
2023-07-28 11:55:16 +00:00
"@types/jest" : "^29.5.3" ,
2024-10-23 14:01:07 +00:00
"@types/node" : "*" ,
2025-05-13 09:18:30 +00:00
"@types/supertest" : "^6.0.3" ,
2024-11-06 15:02:04 +00:00
"cross-env" : "^7.0.3" ,
2023-07-28 11:55:16 +00:00
"jest" : "^29.6.2" ,
"jest-environment-jsdom" : "^29.6.2" ,
2023-05-05 15:50:10 +00:00
"jest-expect-message" : "^1.1.3" ,
2025-04-04 20:58:08 +00:00
"jest-junit" : "^16.0.0" ,
2023-07-28 11:55:16 +00:00
"jest-mock" : "^29.6.2" ,
2023-04-04 17:01:47 +00:00
"jest-mock-extended" : "^3.0.4" ,
2024-09-17 12:10:22 +00:00
"lefthook" : "^1.7.15" ,
2025-03-10 10:27:25 +00:00
"nock" : "^14.0.1" ,
2023-07-28 11:55:16 +00:00
"nodemon" : "^3.0.1" ,
2025-01-08 12:16:56 +00:00
"npm-run-all2" : "^7.0.2" ,
2023-02-14 12:00:15 +00:00
"p-limit" : "^3.1.0" ,
2023-07-28 11:55:16 +00:00
"rimraf" : "^5.0.1" ,
2022-08-06 20:55:51 +00:00
"run-script-os" : "^1.0.7" ,
2025-05-13 09:18:30 +00:00
"supertest" : "^7.1.1" ,
2023-07-28 11:55:16 +00:00
"ts-jest" : "^29.1.1" ,
2024-10-23 12:39:44 +00:00
"tsc-alias" : "^1.8.10" ,
"tsc-watch" : "^6.2.0" ,
2025-06-03 09:49:36 +00:00
"turbo" : "2.5.3" ,
2024-09-03 12:35:13 +00:00
"typescript" : "*" ,
"zx" : "^8.1.4"
2020-04-06 18:04:59 +00:00
} ,
2022-11-09 16:32:05 +00:00
"pnpm" : {
"onlyBuiltDependencies" : [
2023-07-28 11:55:16 +00:00
"sqlite3"
2022-11-09 16:32:05 +00:00
] ,
"overrides" : {
2025-05-21 09:40:39 +00:00
"@azure/identity" : "^4.3.0" ,
2023-06-02 13:23:28 +00:00
"@types/node" : "^18.16.16" ,
2024-10-09 14:23:11 +00:00
"chokidar" : "^4.0.1" ,
2024-10-10 08:58:18 +00:00
"esbuild" : "^0.24.0" ,
2024-05-30 11:54:29 +00:00
"pug" : "^3.0.3" ,
2023-07-18 10:43:49 +00:00
"semver" : "^7.5.4" ,
2025-05-27 11:03:59 +00:00
"tar-fs" : "2.1.2" ,
2024-03-26 13:22:57 +00:00
"tslib" : "^2.6.2" ,
2023-08-02 09:05:24 +00:00
"tsconfig-paths" : "^4.2.0" ,
2025-03-11 10:14:58 +00:00
"typescript" : "^5.8.2" ,
"vue-tsc" : "^2.2.8" ,
2025-06-02 08:57:56 +00:00
"google-gax" : "^4.3.7" ,
2025-04-29 15:43:12 +00:00
"ws" : ">=8.17.1"
2023-01-27 10:17:41 +00:00
} ,
"patchedDependencies" : {
2025-04-29 15:43:12 +00:00
"bull@4.16.4" : "patches/bull@4.16.4.patch" ,
2025-04-08 08:10:29 +00:00
"pkce-challenge@5.0.0" : "patches/pkce-challenge@5.0.0.patch" ,
2025-04-03 11:43:52 +00:00
"@types/express-serve-static-core@5.0.6" : "patches/@types__express-serve-static-core@5.0.6.patch" ,
2024-03-15 11:10:19 +00:00
"@types/ws@8.5.4" : "patches/@types__ws@8.5.4.patch" ,
2024-11-26 13:16:46 +00:00
"@types/uuencode@0.0.3" : "patches/@types__uuencode@0.0.3.patch" ,
2025-03-11 10:14:58 +00:00
"vue-tsc@2.2.8" : "patches/vue-tsc@2.2.8.patch" ,
2025-04-16 07:30:26 +00:00
"eslint-plugin-n8n-local-rules" : "patches/eslint-plugin-n8n-local-rules.patch" ,
"element-plus@2.4.3" : "patches/element-plus@2.4.3.patch"
2022-11-09 16:32:05 +00:00
}
2022-09-14 07:50:33 +00:00
}
2023-02-09 12:52:41 +00:00
}