2019-06-23 03:35:23 -07:00
|
|
|
{
|
2020-04-06 11:04:59 -07:00
|
|
|
"name": "n8n",
|
2022-11-02 10:46:43 -07:00
|
|
|
"version": "0.201.0",
|
2020-04-06 11:04:59 -07:00
|
|
|
"private": true,
|
|
|
|
"homepage": "https://n8n.io",
|
|
|
|
"scripts": {
|
2022-08-06 13:55:51 -07:00
|
|
|
"build": "turbo run build",
|
|
|
|
"dev": "turbo run dev --parallel",
|
|
|
|
"clean:dist": "npm exec -ws -- rimraf ./dist",
|
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",
|
2022-09-23 07:14:28 -07:00
|
|
|
"postinstall": "patch-package",
|
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",
|
|
|
|
"test:e2e:db:clean": "rimraf ~/.n8n/cypress.sqlite ~/.n8n/cypress.sqlite.bak",
|
|
|
|
"test:e2e:cypress:run": "cypress run",
|
2022-11-09 03:34:14 -08:00
|
|
|
"test:e2e": "npm run test:e2e:db:clean && cross-env DB_SQLITE_DATABASE=cypress.sqlite N8N_DIAGNOSTICS_ENABLED=false start-server-and-test start http://localhost:5678/favicon.ico test:e2e:cypress:run",
|
2022-11-08 04:21:10 -08:00
|
|
|
"test:e2e:cypress:dev": "cypress open",
|
2022-11-09 03:34:14 -08:00
|
|
|
"test:e2e:dev": "npm run test:e2e:db:clean && cross-env DB_SQLITE_DATABASE=cypress.sqlite N8N_DIAGNOSTICS_ENABLED=false start-server-and-test start http://localhost:5678/favicon.ico test:e2e:cypress:dev",
|
2022-11-08 04:21:10 -08:00
|
|
|
"test:e2e:cypress:ci:smoke": "cypress run --headless --spec \"cypress/e2e/0-smoke.cy.ts\"",
|
2022-11-09 03:34:14 -08:00
|
|
|
"test:e2e:ci:smoke": "npm run test:e2e:db:clean && cross-env DB_SQLITE_DATABASE=cypress.sqlite N8N_DIAGNOSTICS_ENABLED=false start-server-and-test start http://localhost:5678/favicon.ico test:e2e:cypress:ci:smoke"
|
2020-04-06 11:04:59 -07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-11-08 04:21:10 -08:00
|
|
|
"@ngneat/falso": "^6.1.0",
|
2022-10-25 13:06:03 -07:00
|
|
|
"@types/jest": "^28.1.8",
|
2022-11-08 04:21:10 -08:00
|
|
|
"cross-env": "^7.0.3",
|
|
|
|
"cypress": "^10.0.3",
|
2022-10-25 13:06:03 -07:00
|
|
|
"jest": "^28.1.3",
|
|
|
|
"jest-environment-jsdom": "^28.1.3",
|
|
|
|
"jest-mock": "^28.1.3",
|
2022-09-23 07:14:28 -07:00
|
|
|
"patch-package": "^6.4.7",
|
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",
|
2022-10-25 13:06:03 -07:00
|
|
|
"ts-jest": "^28.0.8",
|
2022-11-08 04:21:10 -08:00
|
|
|
"turbo": "1.2.15",
|
|
|
|
"typescript": "^4.8.4"
|
2020-04-06 11:04:59 -07:00
|
|
|
},
|
2022-08-06 13:55:51 -07:00
|
|
|
"postcss": {},
|
|
|
|
"workspaces": [
|
2022-09-12 02:41:50 -07:00
|
|
|
"packages/*",
|
|
|
|
"packages/@n8n_io/*"
|
2022-09-14 00:50:33 -07:00
|
|
|
],
|
|
|
|
"overrides": {
|
|
|
|
"browserslist": "^4.21.3",
|
|
|
|
"ejs": "^3.1.8",
|
|
|
|
"fork-ts-checker-webpack-plugin": "^6.0.4",
|
|
|
|
"globby": "^11.0.2"
|
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|