mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
30 lines
972 B
JSON
30 lines
972 B
JSON
{
|
|
"name": "n8n",
|
|
"version": "0.183.0",
|
|
"private": true,
|
|
"homepage": "https://n8n.io",
|
|
"scripts": {
|
|
"bootstrap": "lerna bootstrap --hoist --no-ci",
|
|
"build": "lerna exec npm run build",
|
|
"dev": "lerna exec npm run dev --parallel",
|
|
"clean:dist": "lerna exec -- rimraf ./dist",
|
|
"format": "lerna exec npm run format",
|
|
"lint": "lerna exec npm run lint",
|
|
"lintfix": "lerna exec npm run lintfix",
|
|
"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:windows": "cd packages/cli/bin && n8n",
|
|
"test": "lerna run test",
|
|
"watch": "lerna run --parallel watch",
|
|
"webhook": "./packages/cli/bin/n8n webhook",
|
|
"worker": "./packages/cli/bin/n8n worker"
|
|
},
|
|
"devDependencies": {
|
|
"lerna": "^3.13.1",
|
|
"rimraf": "^3.0.2",
|
|
"run-script-os": "^1.0.7"
|
|
},
|
|
"postcss": {}
|
|
}
|