Files
cloudron-box/package.json

91 lines
2.4 KiB
JSON
Raw Normal View History

{
"name": "cloudron",
"description": "Main code for a cloudron",
"version": "1.0.0",
"private": true,
"author": {
"name": "Cloudron authors"
},
"repository": {
"type": "git",
"url": "https://git.cloudron.io/cloudron/box.git"
},
"dependencies": {
2022-01-09 16:39:24 -08:00
"@google-cloud/dns": "^2.2.4",
"@google-cloud/storage": "^5.16.1",
2019-08-19 09:19:06 +02:00
"@sindresorhus/df": "git+https://github.com/cloudron-io/df.git#type",
"async": "^3.2.2",
2022-01-09 16:39:24 -08:00
"aws-sdk": "^2.1053.0",
"basic-auth": "^2.0.1",
"body-parser": "^1.19.1",
"cloudron-manifestformat": "^5.15.0",
2019-06-14 15:31:13 -07:00
"connect": "^3.7.0",
"connect-lastmile": "^2.1.1",
"connect-timeout": "^1.9.0",
"cookie-parser": "^1.4.6",
"cookie-session": "^2.0.0",
2020-01-31 10:25:47 -08:00
"cron": "^1.8.2",
"db-migrate": "^0.11.13",
"db-migrate-mysql": "^2.2.0",
"debug": "^4.3.3",
2021-06-03 10:11:29 -07:00
"delay": "^5.0.0",
"dockerode": "^3.3.1",
2021-02-08 23:14:32 -08:00
"ejs": "^3.1.6",
"ejs-cli": "^2.2.3",
"express": "^4.17.2",
2021-06-29 09:44:16 -07:00
"ipaddr.js": "^2.0.1",
2021-04-17 23:12:33 -07:00
"js-yaml": "^4.1.0",
2021-05-03 15:50:17 -07:00
"json": "^11.0.0",
"jsonwebtoken": "^8.5.1",
2022-03-01 17:36:09 +01:00
"ldapjs": "^2.3.2",
2021-02-24 09:06:23 -08:00
"lodash": "^4.17.21",
2017-09-27 21:46:24 -07:00
"lodash.chunk": "^4.2.0",
2021-01-16 10:03:45 -08:00
"moment": "^2.29.1",
"moment-timezone": "^0.5.34",
2020-05-27 16:46:54 -07:00
"morgan": "^1.10.0",
2020-09-23 14:08:27 -07:00
"multiparty": "^4.2.2",
2020-01-31 10:25:47 -08:00
"mysql": "^2.18.1",
"nodemailer": "^6.7.2",
2017-06-27 16:23:39 -05:00
"nodemailer-smtp-transport": "^2.7.4",
2019-03-11 10:55:27 -07:00
"once": "^1.4.0",
2021-02-24 09:06:23 -08:00
"pretty-bytes": "^5.6.0",
"progress-stream": "^2.0.0",
"proxy-middleware": "^0.15.0",
"qrcode": "^1.5.0",
"readdirp": "^3.6.0",
2018-06-07 18:32:40 -07:00
"s3-block-read-stream": "^0.5.0",
2021-09-10 11:51:44 -07:00
"safetydance": "^2.2.0",
"semver": "^7.3.5",
"speakeasy": "^2.0.0",
2019-03-11 10:55:27 -07:00
"split": "^1.0.1",
2022-01-09 16:39:24 -08:00
"superagent": "^7.0.1",
"tar-fs": "github:cloudron-io/tar-fs#ignore_stat_error",
2021-01-16 10:05:24 -08:00
"tar-stream": "^2.2.0",
2018-02-22 10:52:42 -08:00
"tldjs": "^2.3.1",
"ua-parser-js": "^1.0.2",
"underscore": "^1.13.2",
2021-02-04 10:59:44 -08:00
"uuid": "^8.3.2",
"validator": "^13.7.0",
"ws": "^8.4.0",
2020-01-31 10:25:47 -08:00
"xml2js": "^0.4.23"
},
"devDependencies": {
"expect.js": "*",
2020-05-27 16:46:54 -07:00
"hock": "^1.4.1",
"js2xmlparser": "^4.0.2",
"mocha": "^9.1.3",
2017-10-11 13:57:05 -07:00
"mock-aws-s3": "git+https://github.com/cloudron-io/mock-aws-s3.git",
"nock": "^13.2.1",
"node-sass": "^7.0.1",
2022-03-11 00:52:41 +01:00
"nyc": "^15.1.0",
"recursive-readdir": "^2.2.2"
},
"scripts": {
2019-04-18 17:14:49 +02:00
"test": "./runTests",
"postmerge": "/bin/true",
"precommit": "/bin/true",
"prepush": "npm test",
"dashboard": "node_modules/.bin/gulp"
}
}