1
0
Fork 0
mirror of synced 2024-06-18 18:35:37 +12:00
budibase/packages/backend-core/package.json

69 lines
1.9 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-05-21 03:56:52 +12:00
"version": "1.0.167-alpha.8",
2022-01-12 04:07:02 +13:00
"description": "Budibase backend core libraries used in server and worker",
2022-05-04 09:58:19 +12:00
"main": "src/index.ts",
"types": "dist/src/index.d.ts",
2021-04-07 22:33:16 +12:00
"author": "Budibase",
2021-11-18 03:21:16 +13:00
"license": "GPL-3.0",
"scripts": {
"build": "rimraf dist/ && tsc -p tsconfig.build.json",
"test": "jest",
"test:watch": "jest --watchAll"
},
2021-04-07 22:33:16 +12:00
"dependencies": {
2021-07-23 21:37:21 +12:00
"@techpass/passport-openidconnect": "^0.3.0",
"aws-sdk": "^2.901.0",
2021-04-07 22:33:16 +12:00
"bcryptjs": "^2.4.3",
"dotenv": "^16.0.1",
"emitter-listener": "^1.1.2",
"ioredis": "^4.27.1",
2021-04-07 22:33:16 +12:00
"jsonwebtoken": "^8.5.1",
"koa-passport": "^4.1.4",
"lodash": "^4.17.21",
2021-10-21 00:35:32 +13:00
"lodash.isarguments": "^3.1.0",
"node-fetch": "^2.6.1",
2021-04-07 22:33:16 +12:00
"passport-google-auth": "^1.0.2",
"passport-google-oauth": "^2.0.0",
"passport-jwt": "^4.0.0",
2021-04-19 22:34:07 +12:00
"passport-local": "^1.0.0",
"posthog-node": "^1.3.0",
2022-04-23 02:39:34 +12:00
"pouchdb": "7.3.0",
"pouchdb-find": "^7.2.2",
"pouchdb-replication-stream": "^1.2.9",
"sanitize-s3-objectkey": "^0.0.1",
"semver": "^7.0.0",
"tar-fs": "^2.1.1",
"uuid": "^8.3.2",
2021-08-05 22:00:35 +12:00
"zlib": "^1.0.5"
},
"jest": {
2022-05-04 09:58:19 +12:00
"preset": "ts-jest",
"testEnvironment": "node",
"setupFiles": [
2022-05-04 09:58:19 +12:00
"./scripts/jestSetup.ts"
]
},
"devDependencies": {
2022-05-04 09:58:19 +12:00
"@shopify/jest-koa-mocks": "^3.1.5",
2022-05-24 09:14:44 +12:00
"@budibase/types": "^1.0.167-alpha.8",
"@types/jest": "^27.4.1",
2022-05-04 09:58:19 +12:00
"@types/koa": "^2.13.3",
"@types/node": "^15.12.4",
"@types/node-fetch": "^2.6.1",
2022-05-04 09:58:19 +12:00
"@types/tar-fs": "^2.0.1",
"@types/uuid": "^8.3.4",
"@types/semver": "^7.0.0",
"ioredis-mock": "^5.5.5",
2022-05-04 09:58:19 +12:00
"jest": "^27.0.3",
"koa": "2.7.0",
2021-07-23 21:37:21 +12:00
"pouchdb-adapter-memory": "^7.2.2",
"pouchdb-all-dbs": "^1.0.2",
2022-05-04 09:58:19 +12:00
"timekeeper": "^2.2.0",
"ts-jest": "^27.0.3",
"typescript": "^4.5.5",
"nodemon": "^2.0.7"
2021-05-21 01:53:22 +12:00
},
"gitHead": "d1836a898cab3f8ab80ee6d8f42be1a9eed7dcdc"
2021-08-06 00:38:23 +12:00
}