mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 09:36:44 +00:00
24 lines
853 B
JSON
24 lines
853 B
JSON
{
|
|
"name": "n8n-containers",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"stack": "tsx ./n8n-start-stack.ts",
|
|
"stack:help": "tsx ./n8n-start-stack.ts --help",
|
|
"dev": "TESTCONTAINERS_REUSE_ENABLE=true npm run stack",
|
|
"dev:postgres": "TESTCONTAINERS_REUSE_ENABLE=true npm run stack -- --postgres",
|
|
"dev:queue": "TESTCONTAINERS_REUSE_ENABLE=true npm run stack -- --queue",
|
|
"dev:multi-main": "TESTCONTAINERS_REUSE_ENABLE=true npm run stack -- --mains 2 --workers 1",
|
|
"stack:clean:all": "docker rm -f $(docker ps -aq --filter 'name=n8n-*') 2>/dev/null || true && docker network prune -f"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"@testcontainers/postgresql": "^11.0.3",
|
|
"@testcontainers/redis": "^11.0.3",
|
|
"testcontainers": "^11.0.3"
|
|
}
|
|
}
|