hostr/package.json
2020-03-14 10:33:48 +00:00

101 lines
3.3 KiB
JSON

{
"name": "hostr",
"description": "Hostr - simple sharing",
"repository": "https://github.com/kudos/hostr-web",
"version": "0.0.0",
"private": true,
"engines": {
"node": ">=11.0.0"
},
"scripts": {
"build": "yarn run build-js && yarn run build-sass",
"build-js": "webpack --progress -p -c webpack.config.js",
"build-sass": "node-sass --include-path ./node_modules/ -r -o web/public/styles/ web/public/styles/",
"heroku-postbuild": "yarn run build",
"init": "babel-node -e \"require('./lib/storage').default();\"",
"initdb": "node -r babel-register test/initdb.js",
"lint": "eslint .",
"start": "node -r babel-register app.js",
"test": "yarn run test-seed && mocha -r babel-register test/**/*.spec.js",
"test-seed": "babel-node test/fixtures/user.js",
"watch": "concurrently -k -n watch-js,watch-sass \"yarn run watch-js\" \"yarn run watch-sass\"",
"watch-js": "webpack -w --mode=development --progress -c webpack.config.js",
"watch-server": "nodemon -r babel-register -i web/public",
"watch-sass": "node-sass --include-path ./node_modules/ -w -r -o web/public/styles/ web/public/styles/"
},
"dependencies": {
"@sendgrid/mail": "^6.5.1",
"@sentry/node": "^5.11.2",
"angular": "^1.7.9",
"angular-reconnecting-websocket": "https://github.com/adieu/angular-reconnecting-websocket#0.1.1",
"angular-resource": "^1.7.9",
"angular-route": "^1.7.9",
"angular-strap": "^2.3.8",
"aws-sdk": "^2.630.0",
"babel": "^6.5.2",
"babel-cli": "^6.10.1",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-register": "^6.9.0",
"basic-auth": "~2.0.1",
"bootstrap-sass": "^3.4.0",
"busboy": "^0.3.0",
"co": "~4.6.0",
"co-redis": "^2.1.0",
"co-views": "~2.1.0",
"copy-webpack-plugin": "^5.1.1",
"debug": "~4.1.1",
"dropzone": "~5.5.1",
"ejs": "^3.0.1",
"form-data": "^3.0.0",
"http-errors": "^1.7.3",
"image-size": "^0.8.3",
"jimp": "^0.9.3",
"jquery": "^3.3.1",
"kcors": "^2.2.2",
"koa": "^2.11.0",
"koa-bodyparser": "^4.2.1",
"koa-compress": "~3.0.0",
"koa-csrf": "^3.0.8",
"koa-error": "^3.2.0",
"koa-favicon": "~2.0.1",
"koa-generic-session": "^2.0.4",
"koa-helmet": "^5.2.0",
"koa-logger": "~3.2.1",
"koa-redis": "^4.0.1",
"koa-router": "^8.0.6",
"koa-session": "^5.13.1",
"koa-static": "^5.0.0",
"koa-views": "^6.2.1",
"koa-websocket": "^6.0.0",
"kue": "^0.11.6",
"mime-types": "^2.1.26",
"moment": "^2.24.0",
"mz": "^2.7.0",
"node-fetch": "^2.3.0",
"node-sass": "^4.13.1",
"node-uuid": "^1.4.8",
"passwords": "^1.3.1",
"pg": "^7.18.1",
"redis": "^3.0.2",
"sequelize": "^5.21.3",
"smooth-scroll": "^16.1.2",
"statsy": "~0.2.0",
"stripe": "^8.24.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"zeroclipboard": "^2.2.0"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"concurrently": "^5.1.0",
"eslint": "^5.13.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.20.0",
"mocha": "^7.0.1",
"nodemon": "^2.0.2",
"supertest": "^4.0.2",
"tmp": "0.1.0"
}
}