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