2015-07-09 23:01:43 +01:00
|
|
|
{
|
|
|
|
"name": "hostr",
|
|
|
|
"description": "Hostr - simple sharing",
|
|
|
|
"repository": "https://github.com/kudos/hostr-web",
|
|
|
|
"version": "0.0.0",
|
|
|
|
"private": true,
|
|
|
|
"engines": {
|
2015-08-08 20:57:19 +01:00
|
|
|
"iojs": "^2.5.0",
|
2015-08-22 00:27:55 +01:00
|
|
|
"npm": "^3.3.0"
|
2015-07-09 23:01:43 +01:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"build": "npm run build-js && npm run build-sass",
|
2015-08-08 20:51:52 +01:00
|
|
|
"build-js": "babel -D -m system -d web/public/build -i web/public web/public/src",
|
2015-07-09 23:01:43 +01:00
|
|
|
"build-sass": "node-sass -r -o web/public/styles/ web/public/styles/",
|
|
|
|
"cover": "istanbul cover _mocha -- --require babel/register test/**/*.spec.js",
|
2015-08-11 21:54:55 +01:00
|
|
|
"init": "babel-node init.js",
|
2015-07-09 23:01:43 +01:00
|
|
|
"jspm": "jspm install",
|
2015-08-11 21:54:55 +01:00
|
|
|
"start": "npm run build && babel-node app.js",
|
2015-07-09 23:01:43 +01:00
|
|
|
"test": "mongo hostr test/fixtures/mongo-user.js test/fixtures/mongo-file.js && mocha -r babel/register test/api test/web",
|
2015-08-22 00:27:55 +01:00
|
|
|
"watch": "parallelshell \"npm run watch-js\" \"npm run watch-server\" \"npm run watch-sass\"",
|
|
|
|
"watch-js": "babel -Dw -m system -d web/public/build web/public/src",
|
|
|
|
"watch-server": "nodemon -x \"babel-node\" app.js",
|
2015-07-09 23:01:43 +01:00
|
|
|
"watch-sass": "node-sass -w -r -o web/public/styles/ web/public/styles/"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2015-08-11 21:54:55 +01:00
|
|
|
"aws-sdk": "~2.1.45",
|
2015-08-08 20:37:49 +01:00
|
|
|
"babel": "~5.8.21",
|
2015-07-09 23:01:43 +01:00
|
|
|
"basic-auth": "~1.0.3",
|
|
|
|
"co": "~4.6.0",
|
|
|
|
"co-busboy": "~1.3.0",
|
|
|
|
"co-redis": "~1.2.1",
|
2015-08-22 00:27:55 +01:00
|
|
|
"co-views": "~2.0.0",
|
2015-07-09 23:01:43 +01:00
|
|
|
"debug": "~2.2.0",
|
|
|
|
"ejs": "~2.3.2",
|
|
|
|
"gm": "~1.18.1",
|
2015-08-22 00:27:55 +01:00
|
|
|
"http-errors": "~1.3.1",
|
|
|
|
"jspm": "~0.16.0",
|
2015-07-09 23:01:43 +01:00
|
|
|
"kcors": "~1.0.1",
|
|
|
|
"koa": "~0.21.0",
|
2015-08-11 21:54:55 +01:00
|
|
|
"koa-bodyparser": "~2.0.1",
|
2015-07-09 23:01:43 +01:00
|
|
|
"koa-compress": "~1.0.8",
|
2015-08-22 00:27:55 +01:00
|
|
|
"koa-csrf": "~2.3.0",
|
2015-07-09 23:01:43 +01:00
|
|
|
"koa-favicon": "~1.2.0",
|
|
|
|
"koa-file-server": "~2.3.1",
|
|
|
|
"koa-generic-session": "~1.9.0",
|
|
|
|
"koa-logger": "~1.3.0",
|
|
|
|
"koa-mount": "~1.3.0",
|
|
|
|
"koa-redis": "~1.0.0",
|
|
|
|
"koa-route": "~2.4.2",
|
2015-08-22 00:27:55 +01:00
|
|
|
"koa-statsd": "~0.0.2",
|
2015-07-09 23:01:43 +01:00
|
|
|
"koa-views": "~3.1.0",
|
|
|
|
"koa-websocket": "~1.0.0",
|
|
|
|
"mandrill-api": "~1.0.45",
|
|
|
|
"mime-types": "~2.1.4",
|
|
|
|
"mkdirp": "~0.5.1",
|
|
|
|
"moment": "~2.10.6",
|
|
|
|
"mongodb-promisified": "~1.0.3",
|
|
|
|
"node-sass": "~3.2.0",
|
|
|
|
"node-uuid": "~1.4.3",
|
|
|
|
"passwords": "~1.3.0",
|
2015-08-11 21:54:55 +01:00
|
|
|
"pretty-error": "~1.2.0",
|
2015-07-09 23:01:43 +01:00
|
|
|
"raven": "~0.8.1",
|
2015-08-22 00:27:55 +01:00
|
|
|
"redis": "~0.12.1",
|
2015-07-09 23:01:43 +01:00
|
|
|
"redis-url": "~1.2.1",
|
2015-08-11 21:54:55 +01:00
|
|
|
"s3-upload-stream": "~1.0.7",
|
2015-08-22 00:27:55 +01:00
|
|
|
"statsy": "~0.2.0",
|
|
|
|
"stripe": "~3.7.1",
|
2015-08-11 21:54:55 +01:00
|
|
|
"swig": "~1.4.2",
|
2015-07-09 23:01:43 +01:00
|
|
|
"virustotal.js": "~0.3.1"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2015-08-22 00:27:55 +01:00
|
|
|
"eslint": "~1.2.0",
|
2015-08-11 21:54:55 +01:00
|
|
|
"istanbul": "~0.3.18",
|
2015-07-09 23:01:43 +01:00
|
|
|
"mocha": "~2.2.5",
|
2015-08-11 21:54:55 +01:00
|
|
|
"nodemon": "~1.4.1",
|
2015-08-22 00:27:55 +01:00
|
|
|
"parallelshell": "~2.0.0",
|
2015-08-08 20:51:52 +01:00
|
|
|
"supertest": "~1.0.1",
|
2015-08-11 21:54:55 +01:00
|
|
|
"tmp": "~0.0.27"
|
2015-07-09 23:01:43 +01:00
|
|
|
},
|
|
|
|
"jspm": {
|
|
|
|
"directories": {
|
|
|
|
"baseURL": "web/public"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"angular": "npm:angular@~1.4.3",
|
|
|
|
"angular-reconnecting-websocket": "github:adieu/angular-reconnecting-websocket@~0.1.1",
|
|
|
|
"angular-strap": "npm:angular-strap@~2.3.1",
|
|
|
|
"angular/resource": "npm:angular-resource@~1.4.3",
|
|
|
|
"angular/route": "npm:angular-route@~1.4.3",
|
|
|
|
"bootstrap-sass": "npm:bootstrap-sass@~3.3.5",
|
|
|
|
"cferdinandi/smooth-scroll": "github:cferdinandi/smooth-scroll@~5.3.7",
|
|
|
|
"dropzone": "npm:dropzone@~4.0.1",
|
|
|
|
"jquery": "npm:jquery@~2.1.4",
|
|
|
|
"zeroclipboard": "npm:zeroclipboard@~2.2.0"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2015-08-22 00:27:55 +01:00
|
|
|
"babel": "npm:babel-core@^5.8.22",
|
|
|
|
"babel-runtime": "npm:babel-runtime@^5.8.20",
|
|
|
|
"core-js": "npm:core-js@^1.1.0"
|
2015-07-09 23:01:43 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|