mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
25 lines
619 B
JSON
25 lines
619 B
JSON
{
|
|
"name": "n8n",
|
|
"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",
|
|
"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"
|
|
},
|
|
"devDependencies": {
|
|
"lerna": "^3.13.1",
|
|
"run-script-os": "^1.0.7"
|
|
},
|
|
"postcss": {},
|
|
"dependencies": {
|
|
"n8n-node-dev": "^0.5.0",
|
|
"typescript": "^3.6.4"
|
|
}
|
|
}
|