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

43 lines
1.1 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",
2019-10-12 06:47:35 +13:00
"version": "0.0.5",
2019-07-17 09:14:57 +12:00
"description": "Budibase Web Server",
2019-06-08 01:18:10 +12:00
"main": "index.js",
"scripts": {
2019-09-10 17:00:19 +12:00
"test": "jest",
2019-09-13 08:44:16 +12:00
"build": "cd appPackages/_master && yarn && cd ../testApp && yarn && cd ../testApp2 && yarn",
2019-09-10 22:48:00 +12:00
"initialise": "node initialise/initialiseBudibase --datastore local --username admin --password admin --rootPath .data --cleanDev",
"dev:builder": "node index"
2019-06-08 01:18:10 +12:00
},
"keywords": [
"budibase"
],
"author": "Michael Shanks",
"license": "AGPL-3.0-or-later",
"dependencies": {
2019-10-12 06:47:35 +13:00
"@budibase/core": "^0.0.5",
2019-06-29 09:59:27 +12:00
"@koa/router": "^8.0.0",
2019-06-08 01:18:10 +12:00
"argon2": "^0.23.0",
2019-07-27 04:08:59 +12:00
"fs-extra": "^8.1.0",
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",
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",
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",
2019-06-08 01:18:10 +12:00
"yargs": "^13.2.4"
2019-06-14 21:05:46 +12:00
},
"devDependencies": {
"@jest/test-sequencer": "^24.8.0",
2019-06-15 04:01:01 +12:00
"jest": "^24.8.0",
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-06-08 01:18:10 +12:00
}
}