/ packages / worker / package.json
package.json
 1  {
 2    "name": "@budibase/worker",
 3    "email": "hi@budibase.com",
 4    "version": "0.0.0",
 5    "description": "Budibase background service",
 6    "main": "src/index.ts",
 7    "repository": {
 8      "type": "git",
 9      "url": "https://github.com/Budibase/budibase.git"
10    },
11    "keywords": [
12      "budibase"
13    ],
14    "scripts": {
15      "prebuild": "rimraf dist/",
16      "build": "node ./scripts/build.js",
17      "postbuild": "copyfiles -f ../../yarn.lock ./dist/",
18      "check:types": "tsc -p tsconfig.json --noEmit --incremental --paths null",
19      "build:dev": "yarn prebuild && tsc --build --watch --preserveWatchOutput",
20      "run:docker": "node --enable-source-maps dist/index.js",
21      "debug": "yarn build && node --expose-gc --inspect=9223 dist/index.js",
22      "run:docker:cluster": "pm2-runtime start pm2.config.js",
23      "dev": "nodemon",
24      "dev:built": "yarn run run:docker",
25      "test": "bash scripts/test.sh",
26      "test:watch": "jest --watch"
27    },
28    "author": "Budibase",
29    "license": "GPL-3.0",
30    "dependencies": {
31      "@budibase/backend-core": "*",
32      "@budibase/pro": "*",
33      "@budibase/shared-core": "*",
34      "@budibase/string-templates": "*",
35      "@budibase/types": "*",
36      "@koa/router": "15.3.0",
37      "@types/global-agent": "2.1.1",
38      "bcrypt": "6.0.0",
39      "bull": "4.10.1",
40      "dd-trace": "5.63.0",
41      "dotenv": "8.6.0",
42      "email-validator": "^2.0.4",
43      "global-agent": "3.0.0",
44      "http-graceful-shutdown": "^3.1.12",
45      "ical-generator": "4.1.0",
46      "joi": "17.6.0",
47      "jsonwebtoken": "9.0.2",
48      "knex": "2.4.2",
49      "koa": "3.1.2",
50      "koa-body": "7.0.1",
51      "koa-compress": "4.0.1",
52      "koa-redis": "^4.0.1",
53      "koa-session": "5.13.1",
54      "koa-useragent": "^4.1.0",
55      "lodash": "4.18.1",
56      "marked": "^15.0.11",
57      "node-fetch": "2.6.7",
58      "nodemailer": "8.0.5",
59      "pouchdb": "9.0.0",
60      "scim2-parse-filter": "^0.2.8",
61      "scim-patch": "^0.8.1",
62      "uuid": "^8.3.2",
63      "yaml": "^2.8.3"
64    },
65    "devDependencies": {
66      "@types/jsonwebtoken": "9.0.3",
67      "@types/lodash": "4.14.200",
68      "@types/maildev": "^0.0.7",
69      "@types/node-fetch": "2.6.4",
70      "@types/nodemailer": "7.0.11",
71      "@types/supertest": "2.0.14",
72      "@types/uuid": "8.3.4",
73      "cheerio": "^1.0.0",
74      "maildev": "^2.2.1",
75      "nock": "^13.5.4",
76      "nodemon": "2.0.15",
77      "rimraf": "3.0.2",
78      "superagent": "^10.1.1",
79      "supertest": "6.3.3",
80      "timekeeper": "2.2.0"
81    }
82  }