2019-06-23 13:35:23 +03:00
{
2024-01-26 12:28:19 +03:00
"name" : "n8n-monorepo" ,
2024-11-13 19:53:54 +03:00
"version" : "1.68.0" ,
2020-04-06 21:04:59 +03:00
"private" : true ,
2022-11-09 19:32:05 +03:00
"engines" : {
2024-07-30 14:27:15 +03:00
"node" : ">=20.15" ,
"pnpm" : ">=9.5"
2022-11-09 19:32:05 +03:00
} ,
2024-07-30 14:27:15 +03:00
"packageManager" : "pnpm@9.6.0" ,
2020-04-06 21:04:59 +03:00
"scripts" : {
2024-09-17 17:37:07 +03:00
"prepare" : "node scripts/prepare.mjs" ,
2022-11-21 14:53:11 +03:00
"preinstall" : "node scripts/block-npm-install.js" ,
2022-08-06 23:55:51 +03:00
"build" : "turbo run build" ,
2024-07-05 18:43:52 +03:00
"build:backend" : "turbo run build:backend" ,
"build:frontend" : "turbo run build:frontend" ,
"build:nodes" : "turbo run build:nodes" ,
2024-07-30 21:24:01 +03:00
"typecheck" : "turbo typecheck" ,
2024-10-02 14:32:46 +03:00
"dev" : "turbo run dev --parallel --env-mode=loose --filter=!n8n-design-system --filter=!@n8n/chat --filter=!@n8n/task-runner" ,
2024-11-13 13:05:19 +03:00
"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 12:38:14 +03:00
"dev:ai" : "turbo run dev --parallel --env-mode=loose --filter=@n8n/nodes-langchain --filter=n8n --filter=n8n-core" ,
2022-11-09 19:32:05 +03:00
"clean" : "turbo run clean --parallel" ,
2024-09-03 15:35:13 +03:00
"reset" : "node scripts/ensure-zx.mjs && zx scripts/reset.mjs" ,
2022-08-19 16:34:02 +03:00
"format" : "turbo run format && node scripts/format.mjs" ,
2024-09-17 15:10:22 +03:00
"format:check" : "turbo run format:check" ,
2022-08-06 23:55:51 +03:00
"lint" : "turbo run lint" ,
"lintfix" : "turbo run lintfix" ,
2024-07-05 18:43:52 +03:00
"lint:backend" : "turbo run lint:backend" ,
"lint:nodes" : "turbo run lint:nodes" ,
"lint:frontend" : "turbo run lint:frontend" ,
2021-06-29 08:28:02 +03:00
"optimize-svg" : "find ./packages -name '*.svg' ! -name 'pipedrive.svg' -print0 | xargs -0 -P16 -L20 npx svgo" ,
2020-04-06 21:04:59 +03:00
"start" : "run-script-os" ,
"start:default" : "cd packages/cli/bin && ./n8n" ,
2022-08-22 18:33:13 +03:00
"start:tunnel" : "./packages/cli/bin/n8n start --tunnel" ,
2020-04-06 21:04:59 +03:00
"start:windows" : "cd packages/cli/bin && n8n" ,
2022-08-06 23:55:51 +03:00
"test" : "turbo run test" ,
2024-07-05 18:43:52 +03: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 20:03:11 +03:00
"watch" : "turbo run watch --parallel" ,
2021-05-02 06:43:01 +03:00
"webhook" : "./packages/cli/bin/n8n webhook" ,
2024-06-10 16:49:50 +03:00
"worker" : "./packages/cli/bin/n8n worker"
2022-11-09 19:32:05 +03:00
} ,
2020-04-06 21:04:59 +03:00
"devDependencies" : {
2024-09-17 15:10:22 +03:00
"@biomejs/biome" : "^1.9.0" ,
2023-02-21 16:04:35 +03:00
"@n8n_io/eslint-config" : "workspace:*" ,
2023-07-28 14:55:16 +03:00
"@types/jest" : "^29.5.3" ,
2024-10-23 17:01:07 +03:00
"@types/node" : "*" ,
2024-03-13 14:47:36 +03:00
"@types/supertest" : "^6.0.2" ,
2024-11-06 18:02:04 +03:00
"cross-env" : "^7.0.3" ,
2023-07-28 14:55:16 +03:00
"jest" : "^29.6.2" ,
"jest-environment-jsdom" : "^29.6.2" ,
2023-05-05 18:50:10 +03:00
"jest-expect-message" : "^1.1.3" ,
2023-07-28 14:55:16 +03:00
"jest-mock" : "^29.6.2" ,
2023-04-04 20:01:47 +03:00
"jest-mock-extended" : "^3.0.4" ,
2024-09-17 15:10:22 +03:00
"lefthook" : "^1.7.15" ,
2023-07-28 14:55:16 +03:00
"nock" : "^13.3.2" ,
"nodemon" : "^3.0.1" ,
2023-02-14 15:00:15 +03:00
"p-limit" : "^3.1.0" ,
2023-07-28 14:55:16 +03:00
"rimraf" : "^5.0.1" ,
2022-08-06 23:55:51 +03:00
"run-script-os" : "^1.0.7" ,
2024-05-31 10:40:03 +03:00
"supertest" : "^7.0.0" ,
2023-07-28 14:55:16 +03:00
"ts-jest" : "^29.1.1" ,
2024-10-23 15:39:44 +03:00
"tsc-alias" : "^1.8.10" ,
"tsc-watch" : "^6.2.0" ,
2024-09-30 13:58:39 +03:00
"turbo" : "2.1.2" ,
2024-09-03 15:35:13 +03:00
"typescript" : "*" ,
"zx" : "^8.1.4"
2020-04-06 21:04:59 +03:00
} ,
2022-11-09 19:32:05 +03:00
"pnpm" : {
"onlyBuiltDependencies" : [
2023-07-28 14:55:16 +03:00
"sqlite3"
2022-11-09 19:32:05 +03:00
] ,
"overrides" : {
2023-06-02 16:23:28 +03:00
"@types/node" : "^18.16.16" ,
2024-10-09 17:23:11 +03:00
"chokidar" : "^4.0.1" ,
2024-10-10 11:58:18 +03:00
"esbuild" : "^0.24.0" ,
2024-03-13 14:47:36 +03:00
"formidable" : "3.5.1" ,
2024-05-30 14:54:29 +03:00
"pug" : "^3.0.3" ,
2023-07-18 13:43:49 +03:00
"semver" : "^7.5.4" ,
2024-03-26 16:22:57 +03:00
"tslib" : "^2.6.2" ,
2023-08-02 12:05:24 +03:00
"tsconfig-paths" : "^4.2.0" ,
2024-09-16 11:29:28 +03:00
"typescript" : "^5.6.2" ,
2024-10-10 11:58:18 +03:00
"vue-tsc" : "^2.1.6" ,
2024-06-20 18:26:50 +03:00
"ws" : ">=8.17.1"
2023-01-27 13:17:41 +03:00
} ,
"patchedDependencies" : {
2023-04-05 18:14:41 +03:00
"typedi@0.10.0" : "patches/typedi@0.10.0.patch" ,
2023-07-07 17:43:45 +03:00
"pkce-challenge@3.0.0" : "patches/pkce-challenge@3.0.0.patch" ,
2023-08-28 11:26:27 +03:00
"pyodide@0.23.4" : "patches/pyodide@0.23.4.patch" ,
2024-04-18 16:53:19 +03:00
"@types/express-serve-static-core@4.17.43" : "patches/@types__express-serve-static-core@4.17.43.patch" ,
2024-03-15 14:10:19 +03:00
"@types/ws@8.5.4" : "patches/@types__ws@8.5.4.patch" ,
2024-11-04 17:21:52 +03:00
"@types/uuencode@0.0.3" : "patches/@types__uuencode@0.0.3.patch"
2022-11-09 19:32:05 +03:00
}
2022-09-14 10:50:33 +03:00
}
2023-02-09 15:52:41 +03:00
}