hostr/package.json

123 lines
3.9 KiB
JSON
Raw Normal View History

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": {
2016-06-02 21:06:52 +01:00
"node": "^6.2.0",
2016-04-02 11:59:46 +01:00
"npm": "^3.8.5"
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/",
2016-06-02 21:06:52 +01:00
"cover": "istanbul cover _mocha -- -r babel-register test/**/*.spec.js",
2016-06-06 17:03:49 +01:00
"heroku-postbuild": "jspm install && npm run build",
2016-06-02 21:06:52 +01:00
"init": "babel-node -e \"require('./lib/storage').default();\"",
2015-07-09 23:01:43 +01:00
"jspm": "jspm install",
2016-06-06 15:37:00 +01:00
"lint": "eslint .",
2016-06-06 17:03:49 +01:00
"start": "node -r babel-register app.js",
2016-06-02 21:06:52 +01:00
"test": "npm run test-seed && mocha -r babel-register test/**/*.spec.js",
2016-06-19 10:14:47 -07:00
"test-seed": "babel-node test/fixtures/user.js",
2015-08-23 19:12:59 +01:00
"watch": "parallelshell \"npm run watch-js\" \"npm run watch-sass\" \"npm run watch-server\"",
2015-08-22 00:27:55 +01:00
"watch-js": "babel -Dw -m system -d web/public/build web/public/src",
2016-06-02 21:06:52 +01:00
"watch-server": "nodemon -r babel-register app.js",
2015-07-09 23:01:43 +01:00
"watch-sass": "node-sass -w -r -o web/public/styles/ web/public/styles/"
},
"dependencies": {
2016-06-18 19:21:12 -07:00
"aws-sdk": "^2.3.19",
2016-06-02 21:06:52 +01:00
"babel": "^6.5.2",
2016-06-18 19:21:12 -07:00
"babel-cli": "^6.10.1",
2016-06-02 21:06:52 +01:00
"babel-plugin-transform-es2015-destructuring": "^6.9.0",
2016-06-18 19:21:12 -07:00
"babel-plugin-transform-es2015-modules-commonjs": "^6.10.3",
2016-06-02 21:06:52 +01:00
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-register": "^6.9.0",
2015-07-09 23:01:43 +01:00
"basic-auth": "~1.0.3",
"co": "~4.6.0",
"co-busboy": "~1.3.0",
2016-06-02 19:23:39 +01:00
"co-redis": "^2.1.0",
2015-08-30 18:46:29 +02:00
"co-views": "~2.1.0",
2015-07-09 23:01:43 +01:00
"debug": "~2.2.0",
2016-06-02 19:23:39 +01:00
"ejs": "^2.4.2",
2015-09-01 14:03:57 +02:00
"form-data": "^1.0.0-rc3",
2016-06-02 19:23:39 +01:00
"http-errors": "^1.5.0",
2016-05-24 21:33:09 +01:00
"image-size": "^0.5.0",
"image-type": "^2.1.0",
2016-06-18 19:21:12 -07:00
"jspm": "^0.16.37",
2016-06-02 19:23:39 +01:00
"kcors": "^1.2.1",
"koa": "^1.2.0",
"koa-bodyparser": "^2.2.0",
2015-07-09 23:01:43 +01:00
"koa-compress": "~1.0.8",
2016-06-18 19:21:12 -07:00
"koa-csrf": "^2.5.0",
2016-06-02 19:23:39 +01:00
"koa-error": "^2.1.0",
2015-07-09 23:01:43 +01:00
"koa-favicon": "~1.2.0",
2016-08-07 14:38:05 +01:00
"koa-generic-session": "^1.11.0",
2016-06-02 19:23:39 +01:00
"koa-helmet": "^1.0.0",
2015-07-09 23:01:43 +01:00
"koa-logger": "~1.3.0",
2016-06-02 19:23:39 +01:00
"koa-redis": "^2.1.1",
2015-08-22 16:16:15 +01:00
"koa-router": "^5.1.2",
2016-06-02 19:23:39 +01:00
"koa-static": "^2.0.0",
2015-08-22 00:27:55 +01:00
"koa-statsd": "~0.0.2",
2016-06-02 19:23:39 +01:00
"koa-views": "^4.1.0",
"koa-websocket": "^2.0.0",
2016-05-24 21:33:09 +01:00
"lwip": "0.0.9",
2015-08-22 18:24:39 +01:00
"mime-types": "~2.1.5",
2016-06-02 19:23:39 +01:00
"moment": "^2.13.0",
2015-07-09 23:01:43 +01:00
"mongodb-promisified": "~1.0.3",
2016-05-25 21:03:07 +01:00
"mz": "^2.4.0",
2016-06-02 19:23:39 +01:00
"node-fetch": "^1.5.3",
2016-06-18 19:21:12 -07:00
"node-sass": "^3.8.0",
2015-07-09 23:01:43 +01:00
"node-uuid": "~1.4.3",
2016-06-06 13:56:44 +01:00
"passwords": "^1.3.1",
2016-06-02 19:23:39 +01:00
"raven": "^0.11.0",
"redis": "^2.6.1",
2016-05-01 12:30:46 +01:00
"sendgrid": "^2.0.0",
2016-06-19 10:14:47 -07:00
"sequelize": "^3.23.3",
"sequelize-classes": "^0.1.12",
2016-06-06 17:16:50 +01:00
"ssh2": "^0.5.0",
2015-08-22 00:27:55 +01:00
"statsy": "~0.2.0",
2016-06-02 19:23:39 +01:00
"stripe": "^4.7.0",
2016-08-07 14:38:05 +01:00
"swig": "~1.4.2",
"validate-ip": "^1.0.1"
2015-07-09 23:01:43 +01:00
},
"devDependencies": {
2016-06-02 21:06:52 +01:00
"babel-eslint": "^6.0.4",
2016-06-18 19:21:12 -07:00
"eslint": "^2.13.0",
2016-06-02 21:06:52 +01:00
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.1",
2016-06-02 19:23:39 +01:00
"istanbul": "^0.4.3",
"mocha": "^2.5.3",
"nodemon": "^1.9.2",
2015-08-22 00:27:55 +01:00
"parallelshell": "~2.0.0",
2016-06-02 19:23:39 +01:00
"supertest": "^1.2.0",
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": {
2016-06-02 21:06:52 +01:00
"angular": "npm:angular@^1.5.6",
2015-07-09 23:01:43 +01:00
"angular-reconnecting-websocket": "github:adieu/angular-reconnecting-websocket@~0.1.1",
2016-06-06 13:39:42 +01:00
"angular-strap": "npm:angular-strap@^2.3.8",
2016-06-02 21:06:52 +01:00
"angular/resource": "npm:angular-resource@^1.5.6",
"angular/route": "npm:angular-route@^1.5.6",
"bootstrap-sass": "npm:bootstrap-sass@^3.3.6",
2015-07-09 23:01:43 +01:00
"cferdinandi/smooth-scroll": "github:cferdinandi/smooth-scroll@~5.3.7",
"dropzone": "npm:dropzone@~4.0.1",
2016-06-02 21:06:52 +01:00
"jquery": "npm:jquery@^2.2.4",
"zeroclipboard": "npm:zeroclipboard@^2.2.0"
2015-07-09 23:01:43 +01:00
},
"devDependencies": {
2016-06-02 21:06:52 +01:00
"babel": "npm:babel-core@^5.8.24",
"babel-runtime": "npm:babel-runtime@^5.8.24",
"core-js": "npm:core-js@^1.1.4"
2015-07-09 23:01:43 +01:00
}
2016-06-06 18:26:34 +01:00
},
"cacheDirectories": [
2016-06-18 19:21:12 -07:00
"node_modules",
"web/public/jspm_packages"
2016-06-06 18:26:34 +01:00
]
2015-07-09 23:01:43 +01:00
}