1
0
Fork 0
mirror of synced 2024-06-01 18:20:18 +12:00
budibase/packages/server/package.json

61 lines
1.5 KiB
JSON
Raw Normal View History

2019-06-08 01:18:10 +12:00
{
2019-09-10 17:00:19 +12:00
"name": "@budibase/server",
2020-04-06 20:26:13 +12:00
"version": "0.0.32",
2019-07-17 09:14:57 +12:00
"description": "Budibase Web Server",
2020-05-08 00:52:24 +12:00
"main": "src/index.js",
2019-06-08 01:18:10 +12:00
"scripts": {
2020-05-08 00:52:24 +12:00
"test": "jest",
2020-05-11 21:28:06 +12:00
"test:integration": "jest routes --runInBand",
2020-04-09 03:57:27 +12:00
"test:watch": "jest -w",
2020-05-12 01:50:15 +12:00
"initialise": "node ../cli/bin/budi init -b local -q",
"budi": "node ../cli/bin/budi",
2020-05-12 01:50:15 +12:00
"dev:builder": "nodemon ../cli/bin/budi run",
2020-05-08 00:52:24 +12:00
"electron": "electron src/electron.js",
"lint": "eslint --fix src/"
2019-06-08 01:18:10 +12:00
},
"keywords": [
"budibase"
],
"author": "Michael Shanks",
"license": "AGPL-3.0-or-later",
"dependencies": {
2020-04-06 20:26:13 +12:00
"@budibase/client": "^0.0.32",
"@budibase/core": "^0.0.32",
2019-06-29 09:59:27 +12:00
"@koa/router": "^8.0.0",
2020-05-05 04:13:57 +12:00
"ajv": "^6.12.2",
"bcryptjs": "^2.4.3",
2020-04-25 04:28:32 +12:00
"dotenv": "^8.2.0",
2019-07-27 04:08:59 +12:00
"fs-extra": "^8.1.0",
"jsonwebtoken": "^8.5.1",
2019-06-14 21:05:46 +12:00
"koa": "^2.7.0",
2019-06-29 09:59:27 +12:00
"koa-body": "^4.1.0",
"koa-compress": "^4.0.1",
2020-04-08 02:12:08 +12:00
"koa-logger": "^3.2.1",
2019-07-17 09:14:57 +12:00
"koa-send": "^5.0.0",
"koa-session": "^5.12.0",
2019-07-17 09:14:57 +12:00
"koa-static": "^5.0.0",
2019-07-21 20:54:19 +12:00
"lodash": "^4.17.13",
"pouchdb": "^7.2.1",
2020-04-25 04:28:32 +12:00
"pouchdb-all-dbs": "^1.0.2",
2019-09-07 00:04:23 +12:00
"squirrelly": "^7.5.0",
2019-06-29 09:59:27 +12:00
"tar-fs": "^2.0.0",
"uuid": "^3.3.2",
"yargs": "^13.2.4",
"zlib": "^1.0.5"
2019-06-14 21:05:46 +12:00
},
"devDependencies": {
"@jest/test-sequencer": "^24.8.0",
2020-05-08 00:33:25 +12:00
"electron": "^8.2.5",
"electron-builder": "^22.6.0",
2020-05-08 00:52:24 +12:00
"eslint": "^6.8.0",
2019-06-15 04:01:01 +12:00
"jest": "^24.8.0",
"nodemon": "^2.0.2",
2019-06-14 21:05:46 +12:00
"server-destroy": "^1.0.1",
"supertest": "^4.0.2"
2019-06-20 09:05:53 +12:00
},
2019-06-26 09:48:22 +12:00
"jest": {
2019-06-20 09:05:53 +12:00
"testEnvironment": "node"
2019-10-12 06:48:09 +13:00
},
2020-04-06 20:30:58 +12:00
"gitHead": "b1f4f90927d9e494e513220ef060af28d2d42455"
2019-06-08 01:18:10 +12:00
}