We use only mysql, so updating this means a lot of unused db backends like sqlite do not need to be built with gyp anymore. Note that this version is not yet released as stable, but works fine for us. The outstanding issues are not related to our use-case from what I can tell. Fixes #82
106 lines
3.0 KiB
JSON
106 lines
3.0 KiB
JSON
{
|
|
"name": "Cloudron",
|
|
"description": "Main code for a cloudron",
|
|
"version": "0.0.1",
|
|
"private": "true",
|
|
"author": {
|
|
"name": "Cloudron authors"
|
|
},
|
|
"repository": {
|
|
"type": "git"
|
|
},
|
|
"engines": [
|
|
"node >=4.0.0 <=4.1.1"
|
|
],
|
|
"dependencies": {
|
|
"async": "^1.2.1",
|
|
"aws-sdk": "^2.1.46",
|
|
"body-parser": "^1.13.1",
|
|
"checksum": "^0.1.1",
|
|
"cloudron-manifestformat": "^2.6.0",
|
|
"connect-ensure-login": "^0.1.1",
|
|
"connect-lastmile": "^0.1.0",
|
|
"connect-timeout": "^1.5.0",
|
|
"cookie-parser": "^1.3.5",
|
|
"cookie-session": "^1.1.0",
|
|
"cron": "^1.0.9",
|
|
"csurf": "^1.6.6",
|
|
"db-migrate": "^0.10.0-beta.20",
|
|
"db-migrate-mysql": "^1.1.10",
|
|
"debug": "^2.2.0",
|
|
"dockerode": "^2.2.10",
|
|
"ejs": "^2.2.4",
|
|
"ejs-cli": "^1.2.0",
|
|
"express": "^4.12.4",
|
|
"express-rate-limit": "^2.6.0",
|
|
"express-session": "^1.11.3",
|
|
"gulp-sass": "^3.0.0",
|
|
"hat": "0.0.3",
|
|
"json": "^9.0.3",
|
|
"ldapjs": "^1.0.0",
|
|
"mime": "^1.3.4",
|
|
"moment-timezone": "^0.5.5",
|
|
"morgan": "^1.7.0",
|
|
"multiparty": "^4.1.2",
|
|
"mysql": "^2.7.0",
|
|
"native-dns": "^0.7.0",
|
|
"node-df": "^0.1.1",
|
|
"node-uuid": "^1.4.3",
|
|
"nodemailer": "^1.3.0",
|
|
"nodemailer-smtp-transport": "^1.0.3",
|
|
"oauth2orize": "^1.0.1",
|
|
"once": "^1.3.2",
|
|
"parse-links": "^0.1.0",
|
|
"passport": "^0.2.2",
|
|
"passport-http": "^0.2.2",
|
|
"passport-http-bearer": "^1.0.1",
|
|
"passport-local": "^1.0.0",
|
|
"passport-oauth2-client-password": "^0.1.2",
|
|
"password-generator": "^2.0.2",
|
|
"proxy-middleware": "^0.13.0",
|
|
"safetydance": "^0.1.1",
|
|
"semver": "^4.3.6",
|
|
"showdown": "^1.6.0",
|
|
"split": "^1.0.0",
|
|
"superagent": "^1.8.3",
|
|
"supererror": "^0.7.1",
|
|
"tldjs": "^1.6.2",
|
|
"underscore": "^1.7.0",
|
|
"valid-url": "^1.0.9",
|
|
"validator": "^4.9.0",
|
|
"x509": "^0.2.4"
|
|
},
|
|
"devDependencies": {
|
|
"bootstrap-sass": "^3.3.3",
|
|
"deep-extend": "^0.4.1",
|
|
"del": "^1.1.1",
|
|
"expect.js": "*",
|
|
"gulp": "^3.8.11",
|
|
"gulp-autoprefixer": "^2.3.0",
|
|
"gulp-concat": "^2.4.3",
|
|
"gulp-cssnano": "^2.1.0",
|
|
"gulp-ejs": "^1.0.0",
|
|
"gulp-sass": "^3.0.0",
|
|
"gulp-serve": "^1.0.0",
|
|
"gulp-sourcemaps": "^1.5.2",
|
|
"gulp-uglify": "^1.1.0",
|
|
"hock": "~1.2.0",
|
|
"istanbul": "*",
|
|
"js2xmlparser": "^1.0.0",
|
|
"mocha": "*",
|
|
"nock": "^9.0.2",
|
|
"node-sass": "^3.0.0-alpha.0",
|
|
"request": "^2.65.0",
|
|
"yargs": "^3.15.0"
|
|
},
|
|
"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 -- -R spec ./src/test ./src/routes/test",
|
|
"postmerge": "/bin/true",
|
|
"precommit": "/bin/true",
|
|
"prepush": "npm test",
|
|
"webadmin": "node_modules/.bin/gulp"
|
|
}
|
|
}
|