1
0
Fork 0
mirror of synced 2024-06-01 10:09:48 +12:00
budibase/packages/backend-core/package.json

100 lines
2.7 KiB
JSON
Raw Normal View History

2021-04-07 22:33:16 +12:00
{
2022-01-11 08:30:35 +13:00
"name": "@budibase/backend-core",
2023-05-29 20:54:10 +12:00
"version": "0.0.0",
2022-01-12 04:07:02 +13:00
"description": "Budibase backend core libraries used in server and worker",
2023-08-10 21:07:05 +12:00
"main": "dist/index.js",
2023-09-06 19:28:57 +12:00
"types": "dist/src/index.d.ts",
"exports": {
2023-08-10 21:07:05 +12:00
".": "./dist/index.js",
2023-09-06 01:47:15 +12:00
"./tests": "./dist/tests/index.js",
"./*": "./dist/*.js"
},
2021-04-07 22:33:16 +12:00
"author": "Budibase",
2021-11-18 03:21:16 +13:00
"license": "GPL-3.0",
"scripts": {
2022-06-10 00:15:20 +12:00
"prebuild": "rimraf dist/",
"prepack": "cp package.json dist",
2023-09-06 23:14:59 +12:00
"build": "tsc -p tsconfig.build.json --paths null && node ./scripts/build.js",
2022-06-10 00:15:20 +12:00
"build:dev": "yarn prebuild && tsc --build --watch --preserveWatchOutput",
2023-08-01 23:08:09 +12:00
"check:types": "tsc -p tsconfig.json --noEmit --paths null",
"test": "bash scripts/test.sh",
"test:watch": "jest --watchAll"
},
2021-04-07 22:33:16 +12:00
"dependencies": {
2023-10-28 03:37:36 +13:00
"@budibase/nano": "10.1.4",
2023-02-08 00:56:18 +13:00
"@budibase/pouchdb-replication-stream": "1.2.10",
"@budibase/shared-core": "0.0.0",
2023-05-29 20:54:10 +12:00
"@budibase/types": "0.0.0",
2022-06-09 23:33:10 +12:00
"@techpass/passport-openidconnect": "0.3.2",
2023-10-04 10:45:39 +13:00
"aws-cloudfront-sign": "3.0.2",
2022-06-09 23:33:10 +12:00
"aws-sdk": "2.1030.0",
2023-06-17 03:22:39 +12:00
"bcrypt": "5.1.0",
"bcryptjs": "2.4.3",
2022-10-22 06:25:35 +13:00
"bull": "4.10.1",
"correlation-id": "4.0.0",
2023-12-21 06:20:30 +13:00
"dd-trace": "3.13.2",
2022-06-09 23:33:10 +12:00
"dotenv": "16.0.1",
"ioredis": "5.3.2",
"joi": "17.6.0",
2023-10-19 22:00:53 +13:00
"jsonwebtoken": "9.0.2",
2022-06-09 23:33:10 +12:00
"koa-passport": "4.1.4",
"koa-pino-logger": "4.0.0",
2022-06-09 23:33:10 +12:00
"lodash": "4.17.21",
"node-fetch": "2.6.7",
"passport-google-oauth": "2.0.0",
"passport-local": "1.0.0",
2022-06-24 01:29:19 +12:00
"passport-oauth2-refresh": "^2.1.0",
"pino": "8.11.0",
"pino-http": "8.3.3",
2022-06-09 23:33:10 +12:00
"posthog-node": "1.3.0",
2022-04-23 02:39:34 +12:00
"pouchdb": "7.3.0",
2022-06-09 23:33:10 +12:00
"pouchdb-find": "7.2.2",
2022-06-13 22:34:28 +12:00
"redlock": "4.2.0",
2023-07-05 04:07:58 +12:00
"rotating-file-stream": "3.1.0",
2022-06-09 23:33:10 +12:00
"sanitize-s3-objectkey": "0.0.1",
"semver": "7.3.7",
"tar-fs": "2.1.1",
2023-04-17 21:06:15 +12:00
"uuid": "8.3.2"
},
"devDependencies": {
2023-07-25 23:53:44 +12:00
"@shopify/jest-koa-mocks": "5.1.1",
2023-07-26 07:20:18 +12:00
"@swc/core": "1.3.71",
"@swc/jest": "0.2.27",
"@trendyol/jest-testcontainers": "^2.1.1",
2022-10-07 04:03:47 +13:00
"@types/chance": "1.1.3",
2023-09-27 00:09:16 +13:00
"@types/cookies": "0.7.8",
"@types/jest": "29.5.5",
2023-10-19 22:00:53 +13:00
"@types/lodash": "4.14.200",
2023-09-07 21:18:29 +12:00
"@types/node-fetch": "2.6.4",
2022-06-24 23:08:29 +12:00
"@types/pouchdb": "6.4.0",
2022-06-13 22:34:28 +12:00
"@types/redlock": "4.0.3",
"@types/semver": "7.3.7",
2022-06-09 23:33:10 +12:00
"@types/tar-fs": "2.0.1",
"@types/uuid": "8.3.4",
"chance": "1.1.8",
2023-11-30 09:03:49 +13:00
"ioredis-mock": "8.9.0",
2023-11-07 02:24:33 +13:00
"jest": "29.7.0",
"jest-environment-node": "29.7.0",
2023-07-25 22:31:17 +12:00
"jest-serial-runner": "1.2.1",
"pino-pretty": "10.0.0",
2023-04-05 02:18:08 +12:00
"pouchdb-adapter-memory": "7.2.2",
2022-06-09 23:33:10 +12:00
"timekeeper": "2.2.0",
2023-09-23 04:17:19 +12:00
"typescript": "5.2.2"
2023-08-10 02:20:36 +12:00
},
"nx": {
"targets": {
"build": {
"dependsOn": [
{
"projects": [
"@budibase/shared-core",
"@budibase/types"
],
"target": "build"
}
]
}
}
}
2022-12-20 10:08:30 +13:00
}