2019-06-23 03:35:23 -07:00
|
|
|
{
|
2020-04-06 11:04:59 -07:00
|
|
|
"name": "n8n",
|
2023-04-26 07:05:03 -07:00
|
|
|
"version": "0.226.0",
|
2020-04-06 11:04:59 -07:00
|
|
|
"private": true,
|
|
|
|
"homepage": "https://n8n.io",
|
2022-11-09 08:32:05 -08:00
|
|
|
"engines": {
|
|
|
|
"node": ">=16.9",
|
2023-03-30 02:54:37 -07:00
|
|
|
"pnpm": ">=8.1"
|
2022-11-09 08:32:05 -08:00
|
|
|
},
|
2023-03-30 02:54:37 -07:00
|
|
|
"packageManager": "pnpm@8.1.0",
|
2020-04-06 11:04:59 -07:00
|
|
|
"scripts": {
|
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",
|
2022-11-23 07:20:28 -08:00
|
|
|
"typecheck": "turbo run typecheck",
|
2022-08-06 13:55:51 -07:00
|
|
|
"dev": "turbo run dev --parallel",
|
2022-11-09 08:32:05 -08:00
|
|
|
"clean": "turbo run clean --parallel",
|
2022-08-19 06:34:02 -07:00
|
|
|
"format": "turbo run format && node scripts/format.mjs",
|
2022-08-06 13:55:51 -07:00
|
|
|
"lint": "turbo run lint",
|
|
|
|
"lintfix": "turbo run lintfix",
|
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",
|
|
|
|
"watch": "turbo run watch",
|
2021-05-01 20:43:01 -07:00
|
|
|
"webhook": "./packages/cli/bin/n8n webhook",
|
2022-11-08 04:21:10 -08:00
|
|
|
"worker": "./packages/cli/bin/n8n worker",
|
2022-11-09 08:32:05 -08:00
|
|
|
"cypress:install": "cypress install",
|
2023-01-04 00:47:48 -08:00
|
|
|
"cypress:open": "CYPRESS_BASE_URL=http://localhost:8080 cypress open",
|
2022-11-24 09:32:00 -08:00
|
|
|
"test:e2e:ui": "cross-env E2E_TESTS=true start-server-and-test start http://localhost:5678/favicon.ico 'cypress open'",
|
2022-11-24 03:49:01 -08:00
|
|
|
"test:e2e:dev": "cross-env E2E_TESTS=true CYPRESS_BASE_URL=http://localhost:8080 start-server-and-test dev http://localhost:8080/favicon.ico 'cypress open'",
|
|
|
|
"test:e2e:smoke": "cross-env E2E_TESTS=true start-server-and-test start http://localhost:5678/favicon.ico 'cypress run --headless --spec \"cypress/e2e/0-smoke.cy.ts\"'",
|
2022-11-28 09:11:33 -08:00
|
|
|
"test:e2e:all": "cross-env E2E_TESTS=true start-server-and-test start http://localhost:5678/favicon.ico 'cypress run --headless'"
|
2022-11-09 08:32:05 -08:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-02-21 05:04:35 -08:00
|
|
|
"n8n": "workspace:*"
|
2020-04-06 11:04:59 -07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-02-21 05:04:35 -08:00
|
|
|
"@n8n_io/eslint-config": "workspace:*",
|
2022-11-08 04:21:10 -08:00
|
|
|
"@ngneat/falso": "^6.1.0",
|
2023-03-17 09:24:05 -07:00
|
|
|
"@types/jest": "^29.5.0",
|
2023-02-07 06:49:35 -08:00
|
|
|
"@types/supertest": "^2.0.12",
|
2022-11-08 04:21:10 -08:00
|
|
|
"cross-env": "^7.0.3",
|
2023-03-24 08:12:26 -07:00
|
|
|
"cypress": "^12.8.1",
|
2023-01-30 09:20:50 -08:00
|
|
|
"cypress-real-events": "^1.7.6",
|
2023-03-17 09:24:05 -07:00
|
|
|
"jest": "^29.5.0",
|
|
|
|
"jest-environment-jsdom": "^29.5.0",
|
|
|
|
"jest-mock": "^29.5.0",
|
2023-04-04 10:01:47 -07:00
|
|
|
"jest-mock-extended": "^3.0.4",
|
2022-12-14 06:28:41 -08:00
|
|
|
"nock": "^13.2.9",
|
2022-11-30 08:27:41 -08:00
|
|
|
"node-fetch": "^2.6.7",
|
2023-02-14 04:00:15 -08:00
|
|
|
"p-limit": "^3.1.0",
|
2023-01-27 01:18:15 -08:00
|
|
|
"prettier": "^2.8.3",
|
2020-04-06 11:04:59 -07:00
|
|
|
"rimraf": "^3.0.2",
|
2022-08-06 13:55:51 -07:00
|
|
|
"run-script-os": "^1.0.7",
|
2022-11-08 04:21:10 -08:00
|
|
|
"start-server-and-test": "^1.14.0",
|
2023-02-07 06:49:35 -08:00
|
|
|
"supertest": "^6.3.3",
|
2023-04-04 10:01:47 -07:00
|
|
|
"ts-jest": "^29.1.0",
|
2023-02-09 04:52:41 -08:00
|
|
|
"tsc-watch": "^6.0.0",
|
2023-04-05 08:14:41 -07:00
|
|
|
"turbo": "1.8.8",
|
|
|
|
"typescript": "*"
|
2020-04-06 11:04:59 -07:00
|
|
|
},
|
2022-11-09 08:32:05 -08:00
|
|
|
"pnpm": {
|
|
|
|
"onlyBuiltDependencies": [
|
|
|
|
"sqlite3",
|
|
|
|
"vue-demi"
|
|
|
|
],
|
|
|
|
"overrides": {
|
2023-02-07 06:49:35 -08:00
|
|
|
"@types/node": "^16.18.12",
|
2022-11-09 08:32:05 -08:00
|
|
|
"browserslist": "^4.21.4",
|
2023-02-08 10:26:07 -08:00
|
|
|
"chokidar": "3.5.2",
|
2023-03-21 06:49:27 -07:00
|
|
|
"decode-uri-component": "0.2.2",
|
2022-11-09 08:32:05 -08:00
|
|
|
"ejs": "^3.1.8",
|
|
|
|
"fork-ts-checker-webpack-plugin": "^6.0.4",
|
2023-03-21 06:49:35 -07:00
|
|
|
"http-cache-semantics": "4.1.1",
|
2023-01-13 09:24:59 -08:00
|
|
|
"jsonwebtoken": "9.0.0",
|
2023-01-27 03:44:31 -08:00
|
|
|
"prettier": "^2.8.3",
|
2023-03-30 04:59:59 -07:00
|
|
|
"tslib": "^2.5.0",
|
2023-02-09 04:52:41 -08:00
|
|
|
"ts-node": "^10.9.1",
|
2023-04-04 10:01:47 -07:00
|
|
|
"typescript": "^5.0.3",
|
2023-04-11 06:05:56 -07:00
|
|
|
"xml2js": "^0.5.0",
|
2022-12-22 00:55:39 -08:00
|
|
|
"cpy@8>globby": "^11.1.0",
|
|
|
|
"qqjs>globby": "^11.1.0"
|
2023-01-27 02:17:41 -08:00
|
|
|
},
|
|
|
|
"patchedDependencies": {
|
2023-02-21 10:21:56 -08:00
|
|
|
"element-ui@2.15.12": "patches/element-ui@2.15.12.patch",
|
2023-04-05 08:14:41 -07:00
|
|
|
"typedi@0.10.0": "patches/typedi@0.10.0.patch",
|
2023-04-21 06:09:56 -07:00
|
|
|
"@sentry/cli@2.17.0": "patches/@sentry__cli@2.17.0.patch",
|
2023-04-24 05:47:13 -07:00
|
|
|
"@typescript-eslint/eslint-plugin@5.59.0": "patches/@typescript-eslint__eslint-plugin@5.59.0.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
|
|
|
}
|