Files
cloudron-box/package.json

84 lines
2.0 KiB
JSON
Raw Normal View History

{
"name": "yellowtent",
"description": "Main code for a cloudron",
"version": "1.0.0",
"private": true,
2023-04-14 19:31:45 +02:00
"contributors": [
"Girish",
"Johannes"
],
"repository": {
"type": "git",
"url": "https://git.cloudron.io/cloudron/box.git"
},
2023-03-29 22:52:51 +02:00
"bin": {
2023-03-29 23:09:15 +02:00
"hotfix": "./scripts/hotfix",
"release": "./scripts/release"
2023-03-29 22:52:51 +02:00
},
"dependencies": {
"@google-cloud/dns": "^4.0.0",
2024-06-08 22:37:20 +02:00
"@google-cloud/storage": "^7.11.2",
2023-11-26 09:46:51 +01:00
"async": "^3.2.5",
2024-06-08 22:37:20 +02:00
"aws-sdk": "^2.1637.0",
"basic-auth": "^2.0.1",
2024-11-21 10:00:08 +05:30
"cloudron-manifestformat": "^5.26.2",
2019-06-14 15:31:13 -07:00
"connect": "^3.7.0",
2023-11-26 09:46:51 +01:00
"connect-lastmile": "^2.2.0",
"connect-timeout": "^1.9.0",
"cookie-parser": "^1.4.6",
"cookie-session": "^2.1.0",
"cron": "^3.1.7",
2023-11-26 09:46:51 +01:00
"db-migrate": "^0.11.14",
"db-migrate-mysql": "^2.3.2",
2024-06-03 10:38:53 +02:00
"debug": "^4.3.5",
2024-04-19 17:29:09 +02:00
"dockerode": "^4.0.2",
2024-11-26 13:11:26 +05:30
"domrobot-client": "^3.2.2",
2024-04-19 17:29:09 +02:00
"ejs": "^3.1.10",
2024-04-09 15:31:46 +02:00
"express": "^4.19.2",
2024-06-03 10:38:53 +02:00
"ipaddr.js": "^2.2.0",
2024-06-08 22:37:20 +02:00
"jose": "^5.4.0",
2024-06-03 10:38:53 +02:00
"jsdom": "^24.1.0",
2023-11-26 09:46:51 +01:00
"jsonwebtoken": "^9.0.2",
2023-03-09 18:53:26 +01:00
"ldapjs": "^2.3.3",
2024-04-19 18:00:02 +02:00
"marked": "^12.0.2",
"moment": "^2.30.1",
"moment-timezone": "^0.5.45",
2022-04-15 07:24:40 -05:00
"multiparty": "^4.2.3",
2020-01-31 10:25:47 -08:00
"mysql": "^2.18.1",
2024-04-09 15:31:46 +02:00
"nodemailer": "^6.9.13",
2024-06-03 10:38:53 +02:00
"oidc-provider": "^8.4.6",
2023-11-05 18:38:30 +01:00
"ovh": "^2.0.3",
2023-05-11 10:33:18 +02:00
"qrcode": "^1.5.3",
"readdirp": "^3.6.0",
2023-11-26 09:46:51 +01:00
"safetydance": "^2.4.0",
2024-06-03 10:38:53 +02:00
"semver": "^7.6.2",
"speakeasy": "^2.0.0",
"superagent": "9.0.1",
"tar-stream": "^3.1.7",
2018-02-22 10:52:42 -08:00
"tldjs": "^2.3.1",
2024-06-03 10:38:53 +02:00
"ua-parser-js": "^1.0.38",
2022-11-06 10:26:24 +01:00
"underscore": "^1.13.6",
2023-11-26 09:46:51 +01:00
"uuid": "^9.0.1",
2024-06-03 10:38:53 +02:00
"validator": "^13.12.0",
"ws": "^8.17.0",
2023-07-28 09:35:39 +05:30
"xml2js": "^0.6.2"
},
"devDependencies": {
2024-06-03 10:38:53 +02:00
"@eslint/js": "^9.4.0",
"commander": "^12.1.0",
2023-03-29 23:09:15 +02:00
"easy-table": "^1.2.0",
2024-06-03 10:38:53 +02:00
"eslint": "^9.4.0",
"expect.js": "*",
2020-05-27 16:46:54 -07:00
"hock": "^1.4.1",
2023-03-09 18:17:12 +01:00
"js2xmlparser": "^5.0.0",
2024-04-09 15:31:46 +02:00
"mocha": "^10.4.0",
2024-07-08 22:29:45 +02:00
"mock-aws-s3": "github:cloudron-io/mock-aws-s3#0ad36e5ba",
2024-04-09 15:31:46 +02:00
"nock": "^13.5.4",
"ssh2": "^1.15.0",
2023-03-29 23:09:15 +02:00
"yesno": "^0.4.0"
},
"scripts": {
2022-11-05 15:26:56 +01:00
"test": "./run-tests"
}
}