mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
6a35812f92
Some checks are pending
Test Master / install-and-build (push) Waiting to run
Test Master / Unit tests (18.x) (push) Blocked by required conditions
Test Master / Unit tests (20.x) (push) Blocked by required conditions
Test Master / Unit tests (22.4) (push) Blocked by required conditions
Test Master / Lint (push) Blocked by required conditions
Test Master / Notify Slack on failure (push) Blocked by required conditions
Benchmark Docker Image CI / build (push) Waiting to run
Co-authored-by: Tomi Turtiainen <10324676+tomi@users.noreply.github.com>
94 lines
3.3 KiB
JSON
94 lines
3.3 KiB
JSON
{
|
|
"name": "n8n-monorepo",
|
|
"version": "1.59.0",
|
|
"private": true,
|
|
"engines": {
|
|
"node": ">=20.15",
|
|
"pnpm": ">=9.5"
|
|
},
|
|
"packageManager": "pnpm@9.6.0",
|
|
"scripts": {
|
|
"prepare": "lefthook install",
|
|
"preinstall": "node scripts/block-npm-install.js",
|
|
"build": "turbo run build",
|
|
"build:backend": "turbo run build:backend",
|
|
"build:frontend": "turbo run build:frontend",
|
|
"build:nodes": "turbo run build:nodes",
|
|
"typecheck": "turbo typecheck",
|
|
"dev": "turbo run dev --parallel --env-mode=loose --filter=!n8n-design-system --filter=!@n8n/chat",
|
|
"dev:ai": "turbo run dev --parallel --env-mode=loose --filter=@n8n/nodes-langchain --filter=n8n --filter=n8n-core",
|
|
"clean": "turbo run clean --parallel",
|
|
"reset": "node scripts/ensure-zx.mjs && zx scripts/reset.mjs",
|
|
"format": "turbo run format && node scripts/format.mjs",
|
|
"format:check": "turbo run format:check",
|
|
"lint": "turbo run lint",
|
|
"lintfix": "turbo run lintfix",
|
|
"lint:backend": "turbo run lint:backend",
|
|
"lint:nodes": "turbo run lint:nodes",
|
|
"lint:frontend": "turbo run lint:frontend",
|
|
"optimize-svg": "find ./packages -name '*.svg' ! -name 'pipedrive.svg' -print0 | xargs -0 -P16 -L20 npx svgo",
|
|
"start": "run-script-os",
|
|
"start:default": "cd packages/cli/bin && ./n8n",
|
|
"start:tunnel": "./packages/cli/bin/n8n start --tunnel",
|
|
"start:windows": "cd packages/cli/bin && n8n",
|
|
"test": "turbo run test",
|
|
"test:backend": "turbo run test:backend --concurrency=1",
|
|
"test:frontend": "turbo run test:frontend --concurrency=1",
|
|
"test:nodes": "turbo run test:nodes --concurrency=1",
|
|
"watch": "turbo run watch --parallel",
|
|
"webhook": "./packages/cli/bin/n8n webhook",
|
|
"worker": "./packages/cli/bin/n8n worker"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^1.9.0",
|
|
"@n8n_io/eslint-config": "workspace:*",
|
|
"@types/jest": "^29.5.3",
|
|
"@types/supertest": "^6.0.2",
|
|
"jest": "^29.6.2",
|
|
"jest-environment-jsdom": "^29.6.2",
|
|
"jest-expect-message": "^1.1.3",
|
|
"jest-mock": "^29.6.2",
|
|
"jest-mock-extended": "^3.0.4",
|
|
"lefthook": "^1.7.15",
|
|
"nock": "^13.3.2",
|
|
"nodemon": "^3.0.1",
|
|
"p-limit": "^3.1.0",
|
|
"rimraf": "^5.0.1",
|
|
"run-script-os": "^1.0.7",
|
|
"supertest": "^7.0.0",
|
|
"ts-jest": "^29.1.1",
|
|
"tsc-alias": "^1.8.7",
|
|
"tsc-watch": "^6.0.4",
|
|
"turbo": "2.0.6",
|
|
"typescript": "*",
|
|
"zx": "^8.1.4"
|
|
},
|
|
"pnpm": {
|
|
"onlyBuiltDependencies": [
|
|
"sqlite3"
|
|
],
|
|
"overrides": {
|
|
"@types/node": "^18.16.16",
|
|
"chokidar": "3.5.2",
|
|
"esbuild": "^0.20.2",
|
|
"formidable": "3.5.1",
|
|
"prettier": "^3.2.5",
|
|
"pug": "^3.0.3",
|
|
"semver": "^7.5.4",
|
|
"tslib": "^2.6.2",
|
|
"tsconfig-paths": "^4.2.0",
|
|
"typescript": "^5.6.2",
|
|
"ws": ">=8.17.1"
|
|
},
|
|
"patchedDependencies": {
|
|
"typedi@0.10.0": "patches/typedi@0.10.0.patch",
|
|
"@sentry/cli@2.17.0": "patches/@sentry__cli@2.17.0.patch",
|
|
"pkce-challenge@3.0.0": "patches/pkce-challenge@3.0.0.patch",
|
|
"pyodide@0.23.4": "patches/pyodide@0.23.4.patch",
|
|
"@types/express-serve-static-core@4.17.43": "patches/@types__express-serve-static-core@4.17.43.patch",
|
|
"@types/ws@8.5.4": "patches/@types__ws@8.5.4.patch",
|
|
"@types/uuencode@0.0.3": "patches/@types__uuencode@0.0.3.patch"
|
|
}
|
|
}
|
|
}
|