budibase/packages/server/package.json

119 lines
3.2 KiB
JSON
Raw Normal View History

2019-06-07 15:18:10 +02:00
{
2019-09-10 07:00:19 +02:00
"name": "@budibase/server",
"email": "hi@budibase.com",
2020-11-16 14:54:26 +01:00
"version": "0.3.8",
2019-07-16 23:14:57 +02:00
"description": "Budibase Web Server",
"main": "src/electron.js",
"repository": {
"type": "git",
"url": "https://github.com/Budibase/budibase.git"
},
"build": {
"icon": "./build/icons/512x512.png",
"appId": "com.budibase.builder",
"productName": "Budibase Builder",
2020-05-18 16:46:38 +02:00
"afterSign": "electron-builder-notarize",
"mac": {
"icon": "./assets/icons/icon.icns",
"category": "public.app-category.developer-tools",
"hardenedRuntime": true
},
"linux": {
"maintainer": "Budibase",
"icon": "./build/icons/",
"target": [
"AppImage",
"deb"
],
"category": "Development"
},
"extraMetadata": {
"name": "Budibase Builder"
}
},
2019-06-07 15:18:10 +02:00
"scripts": {
"test": "jest --testPathIgnorePatterns=routes && npm run test:integration",
"test:integration": "jest routes --runInBand",
2020-06-11 15:35:45 +02:00
"test:watch": "jest --watch",
2020-06-15 18:06:54 +02:00
"run:docker": "node src/index",
2020-07-10 17:17:04 +02:00
"dev:builder": "nodemon src/index.js",
2020-05-07 14:52:24 +02:00
"electron": "electron src/electron.js",
2020-05-18 16:46:38 +02:00
"build:electron": "electron-builder --dir",
"publish:electron": "electron-builder -mwl --publish always",
"postinstall": "electron-builder install-app-deps",
"lint": "eslint --fix src/",
"initialise": "node scripts/initialise.js"
2019-06-07 15:18:10 +02:00
},
"keywords": [
"budibase"
],
2020-11-09 16:24:29 +01:00
"author": "Budibase",
2019-06-07 15:18:10 +02:00
"license": "AGPL-3.0-or-later",
"dependencies": {
2020-11-16 14:54:26 +01:00
"@budibase/client": "^0.3.8",
2019-06-28 23:59:27 +02:00
"@koa/router": "^8.0.0",
"@sendgrid/mail": "^7.1.1",
2020-07-14 17:00:58 +02:00
"@sentry/node": "^5.19.2",
"aws-sdk": "^2.767.0",
"bcryptjs": "^2.4.3",
"chmodr": "^1.2.0",
2020-10-01 15:48:07 +02:00
"csvtojson": "^2.0.10",
2020-04-24 18:28:32 +02:00
"dotenv": "^8.2.0",
"download": "^8.0.0",
"electron-is-dev": "^1.2.0",
"electron-unhandled": "^3.0.2",
"electron-updater": "^4.3.1",
"electron-util": "^0.14.2",
2020-07-14 10:10:01 +02:00
"fix-path": "^3.0.0",
2019-07-26 18:08:59 +02:00
"fs-extra": "^8.1.0",
"handlebars": "^4.7.6",
"jimp": "^0.16.1",
"joi": "^17.2.1",
"jsonschema": "^1.4.0",
"jsonwebtoken": "^8.5.1",
2019-06-14 11:05:46 +02:00
"koa": "^2.7.0",
2020-09-23 17:15:09 +02:00
"koa-body": "^4.2.0",
"koa-compress": "^4.0.1",
"koa-pino-logger": "^3.0.0",
2019-07-16 23:14:57 +02:00
"koa-send": "^5.0.0",
"koa-session": "^5.12.0",
2019-07-16 23:14:57 +02:00
"koa-static": "^5.0.0",
2019-07-21 10:54:19 +02:00
"lodash": "^4.17.13",
2020-06-01 17:22:13 +02:00
"mustache": "^4.0.1",
2020-06-29 11:27:38 +02:00
"node-fetch": "^2.6.0",
2020-11-24 11:23:29 +01:00
"open": "^7.3.0",
"pino-pretty": "^4.0.0",
"pouchdb": "^7.2.1",
2020-04-24 18:28:32 +02:00
"pouchdb-all-dbs": "^1.0.2",
2020-10-06 22:10:49 +02:00
"pouchdb-replication-stream": "^1.2.9",
"sanitize-s3-objectkey": "^0.0.1",
"svelte": "^3.30.0",
"tar-fs": "^2.1.0",
"to-json-schema": "^0.2.5",
2019-06-28 23:59:27 +02:00
"uuid": "^3.3.2",
2020-05-28 16:39:29 +02:00
"validate.js": "^0.13.1",
"worker-farm": "^1.7.0",
"yargs": "^13.2.4",
"zlib": "^1.0.5"
2019-06-14 11:05:46 +02:00
},
"devDependencies": {
"@jest/test-sequencer": "^24.8.0",
2020-10-08 10:34:45 +02:00
"electron": "10.1.3",
"electron-builder": "^22.9.1",
"electron-builder-notarize": "^1.1.2",
2020-05-07 14:52:24 +02:00
"eslint": "^6.8.0",
2019-06-14 18:01:01 +02:00
"jest": "^24.8.0",
2020-07-10 17:17:04 +02:00
"nodemon": "^2.0.4",
2020-05-14 16:12:30 +02:00
"pouchdb-adapter-memory": "^7.2.1",
2019-06-14 11:05:46 +02:00
"server-destroy": "^1.0.1",
"supertest": "^4.0.2"
2019-06-19 23:05:53 +02:00
},
2019-06-25 23:48:22 +02:00
"jest": {
2020-05-14 16:12:30 +02:00
"testEnvironment": "node",
"setupFiles": [
"./scripts/jestSetup.js"
]
2019-10-11 19:48:09 +02:00
},
"gitHead": "284cceb9b703c38566c6e6363c022f79a08d5691"
2019-06-07 15:18:10 +02:00
}