2021-04-07 12:33:16 +02:00
|
|
|
{
|
2022-01-10 20:30:35 +01:00
|
|
|
"name": "@budibase/backend-core",
|
2023-05-29 10:54:10 +02:00
|
|
|
"version": "0.0.0",
|
2022-01-11 16:07:02 +01:00
|
|
|
"description": "Budibase backend core libraries used in server and worker",
|
2022-06-09 13:33:10 +02:00
|
|
|
"main": "dist/src/index.js",
|
2022-04-28 23:39:21 +02:00
|
|
|
"types": "dist/src/index.d.ts",
|
2022-06-10 23:57:12 +02:00
|
|
|
"exports": {
|
2022-06-13 12:34:28 +02:00
|
|
|
".": "./dist/src/index.js",
|
2022-06-13 16:29:19 +02:00
|
|
|
"./tests": "./dist/tests/index.js",
|
2022-06-10 23:57:12 +02:00
|
|
|
"./*": "./dist/*.js"
|
|
|
|
},
|
2021-04-07 12:33:16 +02:00
|
|
|
"author": "Budibase",
|
2021-11-17 15:21:16 +01:00
|
|
|
"license": "GPL-3.0",
|
2021-07-13 11:02:08 +02:00
|
|
|
"scripts": {
|
2022-06-09 14:15:20 +02:00
|
|
|
"prebuild": "rimraf dist/",
|
2022-06-15 10:35:35 +02:00
|
|
|
"prepack": "cp package.json dist",
|
2022-06-09 14:15:20 +02:00
|
|
|
"build": "tsc -p tsconfig.build.json",
|
|
|
|
"build:dev": "yarn prebuild && tsc --build --watch --preserveWatchOutput",
|
2023-02-22 14:04:16 +01:00
|
|
|
"test": "bash scripts/test.sh",
|
2021-07-13 11:02:08 +02:00
|
|
|
"test:watch": "jest --watchAll"
|
|
|
|
},
|
2021-04-07 12:33:16 +02:00
|
|
|
"dependencies": {
|
2023-03-02 20:30:24 +01:00
|
|
|
"@budibase/nano": "10.1.2",
|
2023-02-07 12:56:18 +01:00
|
|
|
"@budibase/pouchdb-replication-stream": "1.2.10",
|
2023-05-29 10:54:10 +02:00
|
|
|
"@budibase/types": "0.0.0",
|
2022-09-06 11:22:14 +02:00
|
|
|
"@shopify/jest-koa-mocks": "5.0.1",
|
2022-06-09 13:33:10 +02:00
|
|
|
"@techpass/passport-openidconnect": "0.3.2",
|
2022-12-15 12:35:22 +01:00
|
|
|
"aws-cloudfront-sign": "2.2.0",
|
2022-06-09 13:33:10 +02:00
|
|
|
"aws-sdk": "2.1030.0",
|
|
|
|
"bcrypt": "5.0.1",
|
2022-09-13 19:00:10 +02:00
|
|
|
"bcryptjs": "2.4.3",
|
2022-10-21 19:25:35 +02:00
|
|
|
"bull": "4.10.1",
|
2023-01-11 21:39:33 +01:00
|
|
|
"correlation-id": "4.0.0",
|
2022-06-09 13:33:10 +02:00
|
|
|
"dotenv": "16.0.1",
|
|
|
|
"emitter-listener": "1.1.2",
|
|
|
|
"ioredis": "4.28.0",
|
2022-08-02 10:39:30 +02:00
|
|
|
"joi": "17.6.0",
|
2022-12-22 17:37:01 +01:00
|
|
|
"jsonwebtoken": "9.0.0",
|
2022-06-09 13:33:10 +02:00
|
|
|
"koa-passport": "4.1.4",
|
2023-04-04 16:08:46 +02:00
|
|
|
"koa-pino-logger": "4.0.0",
|
2022-06-09 13:33:10 +02:00
|
|
|
"lodash": "4.17.21",
|
|
|
|
"lodash.isarguments": "3.1.0",
|
|
|
|
"node-fetch": "2.6.7",
|
|
|
|
"passport-google-oauth": "2.0.0",
|
|
|
|
"passport-jwt": "4.0.0",
|
|
|
|
"passport-local": "1.0.0",
|
2022-06-23 15:29:19 +02:00
|
|
|
"passport-oauth2-refresh": "^2.1.0",
|
2023-04-25 21:36:27 +02:00
|
|
|
"pino": "8.11.0",
|
|
|
|
"pino-http": "8.3.3",
|
2022-06-09 13:33:10 +02:00
|
|
|
"posthog-node": "1.3.0",
|
2022-04-22 16:39:34 +02:00
|
|
|
"pouchdb": "7.3.0",
|
2022-06-09 13:33:10 +02:00
|
|
|
"pouchdb-find": "7.2.2",
|
2022-06-13 12:34:28 +02:00
|
|
|
"redlock": "4.2.0",
|
2022-06-09 13:33:10 +02:00
|
|
|
"sanitize-s3-objectkey": "0.0.1",
|
|
|
|
"semver": "7.3.7",
|
|
|
|
"tar-fs": "2.1.1",
|
2023-04-17 11:06:15 +02:00
|
|
|
"uuid": "8.3.2"
|
2021-05-05 18:49:34 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-04-12 14:42:23 +02:00
|
|
|
"@jest/test-sequencer": "29.5.0",
|
2023-01-11 10:37:37 +01:00
|
|
|
"@swc/core": "^1.3.25",
|
|
|
|
"@swc/jest": "^0.2.24",
|
2023-01-27 12:43:36 +01:00
|
|
|
"@trendyol/jest-testcontainers": "^2.1.1",
|
2022-10-06 17:03:47 +02:00
|
|
|
"@types/chance": "1.1.3",
|
2022-10-24 11:04:14 +02:00
|
|
|
"@types/ioredis": "4.28.0",
|
2023-04-14 13:54:24 +02:00
|
|
|
"@types/jest": "29.5.0",
|
2022-11-16 12:34:16 +01:00
|
|
|
"@types/koa": "2.13.4",
|
2022-07-14 20:42:37 +02:00
|
|
|
"@types/lodash": "4.14.180",
|
2022-06-09 13:33:10 +02:00
|
|
|
"@types/node": "14.18.20",
|
|
|
|
"@types/node-fetch": "2.6.1",
|
2022-06-24 13:08:29 +02:00
|
|
|
"@types/pouchdb": "6.4.0",
|
2022-06-13 12:34:28 +02:00
|
|
|
"@types/redlock": "4.0.3",
|
|
|
|
"@types/semver": "7.3.7",
|
2022-06-09 13:33:10 +02:00
|
|
|
"@types/tar-fs": "2.0.1",
|
|
|
|
"@types/uuid": "8.3.4",
|
2023-01-11 21:39:33 +01:00
|
|
|
"chance": "1.1.8",
|
2022-10-12 13:46:45 +02:00
|
|
|
"ioredis-mock": "5.8.0",
|
2023-03-30 17:07:59 +02:00
|
|
|
"jest": "29.5.0",
|
2023-04-12 22:46:08 +02:00
|
|
|
"jest-environment-node": "29.5.0",
|
2023-01-30 14:35:09 +01:00
|
|
|
"jest-serial-runner": "^1.2.1",
|
2022-11-16 12:34:16 +01:00
|
|
|
"koa": "2.13.4",
|
2022-06-13 12:34:28 +02:00
|
|
|
"nodemon": "2.0.16",
|
2023-04-04 16:08:46 +02:00
|
|
|
"pino-pretty": "10.0.0",
|
2023-04-04 16:18:08 +02:00
|
|
|
"pouchdb-adapter-memory": "7.2.2",
|
2022-06-09 13:33:10 +02:00
|
|
|
"timekeeper": "2.2.0",
|
2023-03-30 17:07:59 +02:00
|
|
|
"ts-jest": "29.0.5",
|
2022-11-14 14:29:46 +01:00
|
|
|
"ts-node": "10.8.1",
|
|
|
|
"tsconfig-paths": "4.0.0",
|
2022-06-13 12:34:28 +02:00
|
|
|
"typescript": "4.7.3"
|
2021-05-20 15:53:22 +02:00
|
|
|
},
|
2023-05-23 23:21:47 +02:00
|
|
|
"nx": {
|
|
|
|
"targets": {
|
|
|
|
"build": {
|
|
|
|
"dependsOn": [
|
|
|
|
{
|
|
|
|
"projects": [
|
|
|
|
"@budibase/types"
|
|
|
|
],
|
|
|
|
"target": "build"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2021-05-20 15:53:22 +02:00
|
|
|
"gitHead": "d1836a898cab3f8ab80ee6d8f42be1a9eed7dcdc"
|
2022-12-19 22:08:30 +01:00
|
|
|
}
|