Files
cloudron-box/package.json

102 lines
3.2 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"
},
"engines": {
"node": ">=4.0.0 <=4.1.1"
},
"dependencies": {
2018-02-22 10:52:42 -08:00
"@google-cloud/dns": "^0.7.1",
"@google-cloud/storage": "^1.6.0",
2017-04-07 18:45:14 +02:00
"@sindresorhus/df": "^2.1.0",
"async": "^2.6.0",
2018-02-22 10:52:42 -08:00
"aws-sdk": "^2.201.0",
"body-parser": "^1.18.2",
"cloudron-manifestformat": "^2.11.0",
"connect-ensure-login": "^0.1.1",
"connect-lastmile": "^1.0.2",
"connect-timeout": "^1.9.0",
"cookie-parser": "^1.3.5",
"cookie-session": "^1.3.2",
"cron": "^1.3.0",
"csurf": "^1.6.6",
2018-02-22 10:52:42 -08:00
"db-migrate": "^0.10.5",
"db-migrate-mysql": "^1.1.10",
"debug": "^3.1.0",
2018-02-22 10:52:42 -08:00
"dockerode": "^2.5.4",
"ejs": "^2.5.7",
"ejs-cli": "^2.0.0",
"express": "^4.16.2",
"express-session": "^1.15.6",
"hat": "0.0.3",
"json": "^9.0.3",
2018-02-22 10:52:42 -08:00
"ldapjs": "^1.0.2",
2017-09-27 21:46:24 -07:00
"lodash.chunk": "^4.2.0",
2018-02-22 10:52:42 -08:00
"mime": "^2.2.0",
"moment-timezone": "^0.5.14",
"morgan": "^1.9.0",
"multiparty": "^4.1.2",
"mysql": "^2.15.0",
2018-02-22 10:52:42 -08:00
"nodemailer": "^4.6.0",
2017-06-27 16:23:39 -05:00
"nodemailer-smtp-transport": "^2.7.4",
"oauth2orize": "^1.11.0",
"once": "^1.3.2",
"parse-links": "^0.1.0",
"passport": "^0.4.0",
"passport-http": "^0.3.0",
"passport-http-bearer": "^1.0.1",
"passport-local": "^1.0.0",
"passport-oauth2-client-password": "^0.1.2",
"password-generator": "^2.2.0",
"progress-stream": "^2.0.0",
"proxy-middleware": "^0.15.0",
"recursive-readdir": "^2.2.1",
"request": "^2.83.0",
"s3-block-read-stream": "^0.2.0",
2017-09-27 14:44:48 -07:00
"safetydance": "^0.7.1",
2018-02-22 10:52:42 -08:00
"semver": "^5.5.0",
"showdown": "^1.8.2",
"split": "^1.0.0",
"superagent": "^3.8.1",
2015-11-12 16:08:51 +01:00
"supererror": "^0.7.1",
"tar-fs": "^1.16.0",
"tar-stream": "^1.5.5",
2018-02-22 10:52:42 -08:00
"tldjs": "^2.3.1",
"underscore": "^1.7.0",
2018-02-22 10:52:42 -08:00
"uuid": "^3.2.1",
"valid-url": "^1.0.9",
2018-02-22 10:52:42 -08:00
"validator": "^9.4.1",
"ws": "^3.3.3"
},
"devDependencies": {
"expect.js": "*",
"hock": "^1.3.2",
"istanbul": "*",
2017-11-13 10:56:02 -08:00
"js2xmlparser": "^3.0.0",
2018-02-22 10:52:42 -08:00
"mocha": "^5.0.1",
2017-10-11 13:57:05 -07:00
"mock-aws-s3": "git+https://github.com/cloudron-io/mock-aws-s3.git",
"nock": "^9.0.14",
2017-11-13 10:56:02 -08:00
"node-sass": "^4.6.1",
"readdirp": "https://registry.npmjs.org/readdirp/-/readdirp-2.1.0.tgz",
2018-04-09 20:49:38 +02:00
"rimraf": "^2.6.2"
},
"scripts": {
"migrate_local": "DATABASE_URL=mysql://root:@localhost/box node_modules/.bin/db-migrate up",
"migrate_test": "BOX_ENV=test DATABASE_URL=mysql://root:@localhost/boxtest node_modules/.bin/db-migrate up",
"test": "npm run migrate_test && src/test/setupTest && BOX_ENV=test ./node_modules/istanbul/lib/cli.js test $1 ./node_modules/mocha/bin/_mocha -- --exit -R spec ./src/test ./src/routes/test/[^a]*",
"test_all": "npm run migrate_test && src/test/setupTest && BOX_ENV=test ./node_modules/istanbul/lib/cli.js test $1 ./node_modules/mocha/bin/_mocha -- --exit -R spec ./src/test ./src/routes/test",
"postmerge": "/bin/true",
"precommit": "/bin/true",
"prepush": "npm test",
"dashboard": "node_modules/.bin/gulp"
}
}