2020-12-16 20:50:02 +01:00
|
|
|
{
|
2021-03-29 16:00:40 +02:00
|
|
|
"name": "@budibase/worker",
|
2020-12-16 20:50:02 +01:00
|
|
|
"email": "hi@budibase.com",
|
2021-09-27 12:48:31 +02:00
|
|
|
"version": "0.9.140-alpha.11",
|
2021-05-11 18:49:26 +02:00
|
|
|
"description": "Budibase background service",
|
2020-12-16 20:50:02 +01:00
|
|
|
"main": "src/index.js",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/Budibase/budibase.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"budibase"
|
|
|
|
],
|
|
|
|
"scripts": {
|
2021-03-29 16:00:40 +02:00
|
|
|
"run:docker": "node src/index.js",
|
2021-05-20 14:54:18 +02:00
|
|
|
"build:docker": "docker build . -t worker-service",
|
2021-03-29 16:00:40 +02:00
|
|
|
"dev:stack:init": "node ./scripts/dev/manage.js init",
|
2021-05-05 18:49:34 +02:00
|
|
|
"dev:builder": "npm run dev:stack:init && nodemon src/index.js",
|
2021-08-05 11:52:34 +02:00
|
|
|
"test": "jest --runInBand",
|
|
|
|
"multi:enable": "node scripts/multiTenancy.js enable",
|
2021-09-14 13:21:16 +02:00
|
|
|
"multi:disable": "node scripts/multiTenancy.js disable",
|
|
|
|
"selfhost:enable": "node scripts/selfhost.js enable",
|
|
|
|
"selfhost:disable": "node scripts/selfhost.js disable"
|
2020-12-16 20:50:02 +01:00
|
|
|
},
|
|
|
|
"author": "Budibase",
|
|
|
|
"license": "AGPL-3.0-or-later",
|
|
|
|
"dependencies": {
|
2021-09-27 12:48:31 +02:00
|
|
|
"@budibase/auth": "^0.9.140-alpha.11",
|
|
|
|
"@budibase/string-templates": "^0.9.140-alpha.11",
|
2020-12-16 20:50:02 +01:00
|
|
|
"@koa/router": "^8.0.0",
|
2021-07-23 11:37:21 +02:00
|
|
|
"@techpass/passport-openidconnect": "^0.3.0",
|
2020-12-16 20:50:02 +01:00
|
|
|
"aws-sdk": "^2.811.0",
|
2021-03-29 18:31:41 +02:00
|
|
|
"bcryptjs": "^2.4.3",
|
2021-03-29 16:00:40 +02:00
|
|
|
"dotenv": "^8.2.0",
|
2020-12-16 20:50:02 +01:00
|
|
|
"got": "^11.8.1",
|
2021-04-08 17:58:33 +02:00
|
|
|
"joi": "^17.4.0",
|
2020-12-16 20:50:02 +01:00
|
|
|
"koa": "^2.7.0",
|
|
|
|
"koa-body": "^4.2.0",
|
|
|
|
"koa-compress": "^4.0.1",
|
2021-04-01 21:34:43 +02:00
|
|
|
"koa-passport": "^4.1.4",
|
2020-12-16 20:50:02 +01:00
|
|
|
"koa-pino-logger": "^3.0.0",
|
|
|
|
"koa-send": "^5.0.0",
|
|
|
|
"koa-session": "^5.12.0",
|
|
|
|
"koa-static": "^5.0.0",
|
2021-01-14 18:01:31 +01:00
|
|
|
"node-fetch": "^2.6.1",
|
2021-04-23 14:10:37 +02:00
|
|
|
"nodemailer": "^6.5.0",
|
2021-04-01 21:34:43 +02:00
|
|
|
"passport-google-oauth": "^2.0.0",
|
|
|
|
"passport-jwt": "^4.0.0",
|
|
|
|
"passport-local": "^1.0.0",
|
2020-12-16 20:50:02 +01:00
|
|
|
"pino-pretty": "^4.0.0",
|
2021-03-29 18:31:41 +02:00
|
|
|
"pouchdb": "^7.2.1",
|
2021-01-14 18:01:31 +01:00
|
|
|
"pouchdb-all-dbs": "^1.0.2",
|
2020-12-16 20:50:02 +01:00
|
|
|
"server-destroy": "^1.0.1"
|
2021-03-29 16:00:40 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-04-23 15:58:06 +02:00
|
|
|
"jest": "^26.6.3",
|
2021-04-15 17:25:48 +02:00
|
|
|
"nodemon": "^2.0.7",
|
2021-04-23 15:58:06 +02:00
|
|
|
"pouchdb-adapter-memory": "^7.2.2",
|
2021-08-05 11:52:34 +02:00
|
|
|
"supertest": "^6.1.3",
|
|
|
|
"update-dotenv": "^1.1.1"
|
2021-05-05 18:49:34 +02:00
|
|
|
},
|
|
|
|
"jest": {
|
|
|
|
"testEnvironment": "node",
|
|
|
|
"setupFiles": [
|
|
|
|
"./scripts/jestSetup.js"
|
|
|
|
]
|
2021-05-20 15:53:22 +02:00
|
|
|
},
|
|
|
|
"gitHead": "d1836a898cab3f8ab80ee6d8f42be1a9eed7dcdc"
|
2021-08-05 14:38:23 +02:00
|
|
|
}
|