budibase/packages/backend-core/package.json

100 lines
2.7 KiB
JSON
Raw Normal View History

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",
2023-08-10 11:07:05 +02:00
"main": "dist/index.js",
2023-09-06 09:28:57 +02:00
"types": "dist/src/index.d.ts",
"exports": {
2023-08-10 11:07:05 +02:00
".": "./dist/index.js",
2023-09-05 15:47:15 +02:00
"./tests": "./dist/tests/index.js",
"./*": "./dist/*.js"
},
2021-04-07 12:33:16 +02:00
"author": "Budibase",
2021-11-17 15:21:16 +01:00
"license": "GPL-3.0",
"scripts": {
2022-06-09 14:15:20 +02:00
"prebuild": "rimraf dist/",
"prepack": "cp package.json dist",
2023-09-06 13:14:59 +02:00
"build": "tsc -p tsconfig.build.json --paths null && node ./scripts/build.js",
2022-06-09 14:15:20 +02:00
"build:dev": "yarn prebuild && tsc --build --watch --preserveWatchOutput",
2023-08-01 13:08:09 +02:00
"check:types": "tsc -p tsconfig.json --noEmit --paths null",
"test": "bash scripts/test.sh",
"test:watch": "jest --watchAll"
},
2021-04-07 12:33:16 +02:00
"dependencies": {
2023-10-27 16:37:36 +02:00
"@budibase/nano": "10.1.4",
2023-02-07 12:56:18 +01:00
"@budibase/pouchdb-replication-stream": "1.2.10",
"@budibase/shared-core": "0.0.0",
2023-05-29 10:54:10 +02:00
"@budibase/types": "0.0.0",
2022-06-09 13:33:10 +02:00
"@techpass/passport-openidconnect": "0.3.2",
2023-10-03 23:45:39 +02:00
"aws-cloudfront-sign": "3.0.2",
2022-06-09 13:33:10 +02:00
"aws-sdk": "2.1030.0",
2023-06-16 17:22:39 +02:00
"bcrypt": "5.1.0",
"bcryptjs": "2.4.3",
2022-10-21 19:25:35 +02:00
"bull": "4.10.1",
"correlation-id": "4.0.0",
2022-06-09 13:33:10 +02:00
"dotenv": "16.0.1",
"ioredis": "5.3.2",
"joi": "17.6.0",
2023-10-19 11:00:53 +02:00
"jsonwebtoken": "9.0.2",
2022-06-09 13:33:10 +02:00
"koa-passport": "4.1.4",
"koa-pino-logger": "4.0.0",
2022-06-09 13:33:10 +02:00
"lodash": "4.17.21",
"node-fetch": "2.6.7",
"passport-google-oauth": "2.0.0",
"passport-local": "1.0.0",
2022-06-23 15:29:19 +02:00
"passport-oauth2-refresh": "^2.1.0",
"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",
2023-07-04 18:07:58 +02:00
"rotating-file-stream": "3.1.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"
},
"devDependencies": {
2023-07-25 13:53:44 +02:00
"@shopify/jest-koa-mocks": "5.1.1",
2023-07-25 21:20:18 +02:00
"@swc/core": "1.3.71",
"@swc/jest": "0.2.27",
"@trendyol/jest-testcontainers": "^2.1.1",
2022-10-06 17:03:47 +02:00
"@types/chance": "1.1.3",
2023-09-26 13:09:16 +02:00
"@types/cookies": "0.7.8",
"@types/jest": "29.5.5",
2023-10-19 11:00:53 +02:00
"@types/lodash": "4.14.200",
2023-09-07 11:18:29 +02:00
"@types/node": "18.17.0",
"@types/node-fetch": "2.6.4",
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",
"chance": "1.1.8",
2023-11-29 21:03:49 +01:00
"ioredis-mock": "8.9.0",
2023-11-06 14:24:33 +01:00
"jest": "29.7.0",
"jest-environment-node": "29.7.0",
2023-07-25 12:31:17 +02:00
"jest-serial-runner": "1.2.1",
"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-09-22 18:17:19 +02:00
"typescript": "5.2.2"
2023-08-09 16:20:36 +02:00
},
"nx": {
"targets": {
"build": {
"dependsOn": [
{
"projects": [
"@budibase/shared-core",
"@budibase/types"
],
"target": "build"
}
]
}
}
}
2022-12-19 22:08:30 +01:00
}