1
0
Fork 0
mirror of synced 2024-05-17 10:53:15 +12:00
budibase/packages/backend-core/package.json

83 lines
2.3 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",
2022-11-22 01:54:57 +13:00
"version": "2.1.31",
2022-01-12 04:07:02 +13:00
"description": "Budibase backend core libraries used in server and worker",
2022-06-09 23:33:10 +12:00
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"exports": {
2022-06-13 22:34:28 +12:00
".": "./dist/src/index.js",
"./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",
2022-06-10 00:15:20 +12:00
"build": "tsc -p tsconfig.build.json",
"build:dev": "yarn prebuild && tsc --build --watch --preserveWatchOutput",
"test": "jest --coverage",
"test:watch": "jest --watchAll"
},
2021-04-07 22:33:16 +12:00
"dependencies": {
2022-11-22 01:54:57 +13:00
"@budibase/types": "^2.1.31",
"@shopify/jest-koa-mocks": "5.0.1",
2022-06-09 23:33:10 +12:00
"@techpass/passport-openidconnect": "0.3.2",
"aws-sdk": "2.1030.0",
"bcrypt": "5.0.1",
"bcryptjs": "2.4.3",
2022-10-22 06:25:35 +13:00
"bull": "4.10.1",
2022-06-09 23:33:10 +12:00
"dotenv": "16.0.1",
"emitter-listener": "1.1.2",
"ioredis": "4.28.0",
"joi": "17.6.0",
2022-06-09 23:33:10 +12:00
"jsonwebtoken": "8.5.1",
"koa-passport": "4.1.4",
"lodash": "4.17.21",
"lodash.isarguments": "3.1.0",
"nano": "^10.1.0",
2022-06-09 23:33:10 +12:00
"node-fetch": "2.6.7",
"passport-google-auth": "1.0.2",
"passport-google-oauth": "2.0.0",
"passport-jwt": "4.0.0",
"passport-local": "1.0.0",
2022-06-24 01:29:19 +12:00
"passport-oauth2-refresh": "^2.1.0",
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",
"pouchdb-replication-stream": "1.2.9",
2022-06-13 22:34:28 +12:00
"redlock": "4.2.0",
2022-06-09 23:33:10 +12:00
"sanitize-s3-objectkey": "0.0.1",
"semver": "7.3.7",
"tar-fs": "2.1.1",
"uuid": "8.3.2",
"zlib": "1.0.5"
},
"devDependencies": {
2022-10-07 04:03:47 +13:00
"@types/chance": "1.1.3",
2022-10-24 22:04:14 +13:00
"@types/ioredis": "4.28.0",
2022-06-13 22:34:28 +12:00
"@types/jest": "27.5.1",
"@types/koa": "2.13.4",
2022-07-15 06:42:37 +12:00
"@types/lodash": "4.14.180",
2022-06-09 23:33:10 +12:00
"@types/node": "14.18.20",
"@types/node-fetch": "2.6.1",
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",
2022-10-07 04:03:47 +13:00
"chance": "1.1.3",
2022-10-13 00:46:45 +13:00
"ioredis-mock": "5.8.0",
"jest": "28.1.1",
"koa": "2.13.4",
2022-06-13 22:34:28 +12:00
"nodemon": "2.0.16",
2022-06-09 23:33:10 +12:00
"pouchdb-adapter-memory": "7.2.2",
"timekeeper": "2.2.0",
"ts-jest": "28.0.4",
"ts-node": "10.8.1",
"tsconfig-paths": "4.0.0",
2022-06-13 22:34:28 +12:00
"typescript": "4.7.3"
2021-05-21 01:53:22 +12:00
},
"gitHead": "d1836a898cab3f8ab80ee6d8f42be1a9eed7dcdc"
2022-11-01 03:01:44 +13:00
}