hostr/package.json

125 lines
4 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": {
2018-06-02 15:50:39 +00:00
"node": "^10.1.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/",
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();\"",
2018-06-02 15:50:39 +00:00
"initdb": "node -r babel-register test/initdb.js",
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",
2018-06-02 15:50:39 +00:00
"watch": "concurrently -k -n watch-js,watch-server \"npm run watch-js\" \"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",
2018-06-02 15:50:39 +00:00
"watch-server": "nodemon -r babel-register -i web/public",
2015-07-09 23:01:43 +01:00
"watch-sass": "node-sass -w -r -o web/public/styles/ web/public/styles/"
},
"dependencies": {
2018-06-02 15:50:39 +00:00
"async-busboy": "^0.6.2",
"aws-sdk": "^2.245.1",
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",
2018-06-02 15:50:39 +00:00
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
2016-06-02 21:06:52 +01:00
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-register": "^6.9.0",
2018-06-02 15:50:39 +00:00
"basic-auth": "~2.0.0",
"busboy": "^0.2.14",
2015-07-09 23:01:43 +01:00
"co": "~4.6.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",
2018-06-02 15:50:39 +00:00
"debug": "~3.1.0",
"ejs": "^2.6.1",
"form-data": "^2.3.2",
"http-errors": "^1.6.3",
"image-size": "^0.6.2",
"image-type": "^3.0.0",
"jimp": "0.2.28",
"jspm": "0.16.53",
"kcors": "^2.2.1",
"koa": "^2.5.1",
"koa-bodyparser": "^4.2.1",
"koa-compress": "~3.0.0",
"koa-csrf": "^3.0.6",
"koa-error": "^3.2.0",
"koa-favicon": "~2.0.1",
"koa-generic-session": "^2.0.1",
"koa-helmet": "^4.0.0",
"koa-logger": "~3.2.0",
"koa-redis": "^3.1.2",
"koa-router": "^7.4.0",
"koa-session": "^5.8.1",
"koa-static": "^4.0.3",
2015-08-22 00:27:55 +01:00
"koa-statsd": "~0.0.2",
2018-06-02 15:50:39 +00:00
"koa-views": "^6.1.4",
"koa-websocket": "^5.0.1",
"kue": "^0.11.6",
"mime-types": "^2.1.18",
"moment": "^2.22.1",
"mz": "^2.7.0",
"node-fetch": "^2.1.2",
"node-sass": "^4.9.0",
"node-uuid": "^1.4.8",
2016-06-06 13:56:44 +01:00
"passwords": "^1.3.1",
2018-06-02 15:50:39 +00:00
"pg": "^7.4.3",
"raven": "^2.6.2",
"redis": "^2.8.0",
"sendgrid": "^5.2.3",
"sequelize": "^4.37.10",
"ssh2": "^0.6.1",
2015-08-22 00:27:55 +01:00
"statsy": "~0.2.0",
2018-06-02 15:50:39 +00:00
"stripe": "^6.0.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": {
2018-06-02 15:50:39 +00:00
"babel-eslint": "^8.2.3",
"concurrently": "^3.5.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.12.0",
2016-06-02 19:23:39 +01:00
"istanbul": "^0.4.3",
2018-06-02 15:50:39 +00:00
"mocha": "^5.2.0",
"nodemon": "^1.17.4",
"supertest": "^3.1.0",
"tmp": "0.0.33"
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
}