hostr/package.json

103 lines
3.3 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": {
2025-06-12 16:07:15 +01:00
"node": ">=22.0.0"
2015-07-09 23:01:43 +01:00
},
"scripts": {
2019-01-19 11:06:14 +00:00
"build": "yarn run build-js && yarn run build-sass",
2025-06-12 16:07:15 +01:00
"build-js": "NODE_OPTIONS=--openssl-legacy-provider webpack --progress -p -c webpack.config.js",
"build-sass": "sass --load-path=./node_modules/ web/public/styles/",
2019-01-19 11:06:14 +00:00
"heroku-postbuild": "yarn run build",
2025-06-12 16:07:15 +01:00
"init": "node -e \"require('./lib/storage').default();\"",
2018-06-02 15:50:39 +00:00
"initdb": "node -r babel-register test/initdb.js",
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",
2019-01-19 11:06:14 +00:00
"test": "yarn 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",
2019-01-19 11:06:14 +00:00
"watch": "concurrently -k -n watch-js,watch-sass \"yarn run watch-js\" \"yarn run watch-sass\"",
2019-07-21 19:37:20 +00:00
"watch-js": "webpack -w --mode=development --progress -c webpack.config.js",
2018-06-02 15:50:39 +00:00
"watch-server": "nodemon -r babel-register -i web/public",
2025-06-12 16:07:15 +01:00
"watch-sass": "sass --load-path=./node_modules/ -w web/public/styles/"
2015-07-09 23:01:43 +01:00
},
"dependencies": {
"@sendgrid/mail": "^7.1.1",
"@sentry/node": "^5.17.0",
"angular": "^1.7.9",
"angular-reconnecting-websocket": "https://github.com/adieu/angular-reconnecting-websocket#v0.1.1",
"angular-resource": "^1.7.9",
"angular-route": "^1.7.9",
2018-06-02 19:42:45 +00:00
"angular-strap": "^2.3.8",
"aws-sdk": "^2.686.0",
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",
2019-01-14 21:37:03 +00:00
"basic-auth": "~2.0.1",
"bootstrap-sass": "^3.4.0",
"busboy": "^0.3.0",
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",
2020-06-14 22:29:04 +01:00
"copy-webpack-plugin": "^6.0.2",
2019-01-14 21:37:03 +00:00
"debug": "~4.1.1",
"dropzone": "~5.7.0",
"ejs": "^3.1.3",
2020-06-14 22:29:04 +01:00
"ejs-lint": "^1.1.0",
"form-data": "^3.0.0",
"http-errors": "^1.7.3",
"image-size": "^0.8.3",
2020-06-14 22:29:04 +01:00
"jimp": "^0.13.0",
"jquery": "^3.5.0",
2018-08-11 12:53:42 +01:00
"kcors": "^2.2.2",
2025-05-30 09:03:26 +01:00
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
2025-05-30 09:03:26 +01:00
"koa-compress": "~5.1.0",
"koa-csrf": "^3.0.8",
2018-06-02 15:50:39 +00:00
"koa-error": "^3.2.0",
"koa-favicon": "~2.1.0",
"koa-generic-session": "^2.0.4",
"koa-helmet": "^5.2.0",
"koa-logger": "~3.2.1",
"koa-redis": "^4.0.1",
2020-06-14 22:29:04 +01:00
"koa-router": "^9.0.1",
"koa-session": "^6.0.0",
2018-08-11 12:53:42 +01:00
"koa-static": "^5.0.0",
"koa-views": "^6.2.1",
"koa-websocket": "^6.0.0",
2018-06-02 15:50:39 +00:00
"kue": "^0.11.6",
"mime-types": "^2.1.26",
"moment": "^2.24.0",
2018-06-02 15:50:39 +00:00
"mz": "^2.7.0",
2019-01-14 21:37:03 +00:00
"node-fetch": "^2.3.0",
2020-04-28 20:31:28 +01:00
"node-uuid": "^1.4.8",
2025-06-12 16:07:15 +01:00
"nodemon": "^3.1.10",
2020-04-28 20:31:28 +01:00
"passwords": "^1.3.1",
"pg": "^8.0.3",
2020-06-14 22:29:04 +01:00
"redis": "^3.0.2",
2025-06-12 16:07:15 +01:00
"sass": "^1.89.2",
2020-06-14 22:29:04 +01:00
"sequelize": "^5.21.11",
2020-04-28 20:31:28 +01:00
"smooth-scroll": "https://github.com/cferdinandi/smooth-scroll#5.3.7",
2015-08-22 00:27:55 +01:00
"statsy": "~0.2.0",
"stripe": "^8.61.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
2018-06-02 19:42:45 +00:00
"zeroclipboard": "^2.2.0"
2015-07-09 23:01:43 +01:00
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"concurrently": "^5.1.0",
2020-06-14 22:29:04 +01:00
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.2",
"mocha": "^8.0.0",
2019-04-02 17:37:34 +01:00
"supertest": "^4.0.2",
2020-06-14 22:29:04 +01:00
"tmp": "0.2.1"
2018-06-02 19:42:45 +00:00
}
2015-07-09 23:01:43 +01:00
}