Update dependencies
This commit is contained in:
parent
78f4c15929
commit
1158db6d7e
3 changed files with 1918 additions and 1464 deletions
|
@ -1,4 +1,4 @@
|
||||||
FROM node:11.6.0-alpine
|
FROM node:11.13.0-alpine
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
|
|
21
package.json
21
package.json
|
@ -5,13 +5,12 @@
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^11.6.0"
|
"node": ">=11.0.0"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "yarn run build-js && yarn run build-sass",
|
"build": "yarn run build-js && yarn run build-sass",
|
||||||
"build-js": "webpack --progress -p -c webpack.config.js",
|
"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/",
|
"build-sass": "node-sass --include-path ./node_modules/ -r -o web/public/styles/ web/public/styles/",
|
||||||
"cover": "istanbul cover _mocha -- -r babel-register test/**/*.spec.js",
|
|
||||||
"heroku-postbuild": "yarn run build",
|
"heroku-postbuild": "yarn run build",
|
||||||
"init": "babel-node -e \"require('./lib/storage').default();\"",
|
"init": "babel-node -e \"require('./lib/storage').default();\"",
|
||||||
"initdb": "node -r babel-register test/initdb.js",
|
"initdb": "node -r babel-register test/initdb.js",
|
||||||
|
@ -25,12 +24,13 @@
|
||||||
"watch-sass": "node-sass --include-path ./node_modules/ -w -r -o web/public/styles/ web/public/styles/"
|
"watch-sass": "node-sass --include-path ./node_modules/ -w -r -o web/public/styles/ web/public/styles/"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"@sendgrid/mail": "^6.3.1",
|
||||||
|
"@sentry/node": "^4.5.3",
|
||||||
"angular": "^1.7.7",
|
"angular": "^1.7.7",
|
||||||
"angular-reconnecting-websocket": "https://github.com/adieu/angular-reconnecting-websocket#0.1.1",
|
"angular-reconnecting-websocket": "https://github.com/adieu/angular-reconnecting-websocket#0.1.1",
|
||||||
"angular-resource": "^1.7.7",
|
"angular-resource": "^1.7.7",
|
||||||
"angular-route": "^1.7.7",
|
"angular-route": "^1.7.7",
|
||||||
"angular-strap": "^2.3.8",
|
"angular-strap": "^2.3.8",
|
||||||
"async-busboy": "^0.7.0",
|
|
||||||
"aws-sdk": "^2.400.0",
|
"aws-sdk": "^2.400.0",
|
||||||
"babel": "^6.5.2",
|
"babel": "^6.5.2",
|
||||||
"babel-cli": "^6.10.1",
|
"babel-cli": "^6.10.1",
|
||||||
|
@ -51,8 +51,7 @@
|
||||||
"form-data": "^2.3.3",
|
"form-data": "^2.3.3",
|
||||||
"http-errors": "^1.7.1",
|
"http-errors": "^1.7.1",
|
||||||
"image-size": "^0.7.1",
|
"image-size": "^0.7.1",
|
||||||
"image-type": "^3.0.0",
|
"jimp": "^0.6.1",
|
||||||
"jimp": "0.6.0",
|
|
||||||
"jquery": "^3.3.1",
|
"jquery": "^3.3.1",
|
||||||
"kcors": "^2.2.2",
|
"kcors": "^2.2.2",
|
||||||
"koa": "^2.7.0",
|
"koa": "^2.7.0",
|
||||||
|
@ -68,7 +67,6 @@
|
||||||
"koa-router": "^7.4.0",
|
"koa-router": "^7.4.0",
|
||||||
"koa-session": "^5.10.1",
|
"koa-session": "^5.10.1",
|
||||||
"koa-static": "^5.0.0",
|
"koa-static": "^5.0.0",
|
||||||
"koa-statsd": "~0.0.2",
|
|
||||||
"koa-views": "^6.1.5",
|
"koa-views": "^6.1.5",
|
||||||
"koa-websocket": "^5.0.1",
|
"koa-websocket": "^5.0.1",
|
||||||
"kue": "^0.11.6",
|
"kue": "^0.11.6",
|
||||||
|
@ -79,16 +77,12 @@
|
||||||
"node-sass": "^4.11.0",
|
"node-sass": "^4.11.0",
|
||||||
"node-uuid": "^1.4.8",
|
"node-uuid": "^1.4.8",
|
||||||
"passwords": "^1.3.1",
|
"passwords": "^1.3.1",
|
||||||
"pg": "^7.8.0",
|
"pg": "^7.9.0",
|
||||||
"@sentry/node": "^4.5.3",
|
|
||||||
"redis": "^2.8.0",
|
"redis": "^2.8.0",
|
||||||
"@sendgrid/mail": "^6.3.1",
|
|
||||||
"sequelize": "^4.42.0",
|
"sequelize": "^4.42.0",
|
||||||
"smooth-scroll": "https://github.com/cferdinandi/smooth-scroll#5.3.7",
|
"smooth-scroll": "https://github.com/cferdinandi/smooth-scroll#5.3.7",
|
||||||
"statsy": "~0.2.0",
|
"statsy": "~0.2.0",
|
||||||
"stripe": "^6.23.1",
|
"stripe": "^6.23.1",
|
||||||
"swig": "~1.4.2",
|
|
||||||
"validate-ip": "^1.0.1",
|
|
||||||
"webpack": "^4.29.3",
|
"webpack": "^4.29.3",
|
||||||
"webpack-cli": "^3.2.3",
|
"webpack-cli": "^3.2.3",
|
||||||
"zeroclipboard": "^2.2.0"
|
"zeroclipboard": "^2.2.0"
|
||||||
|
@ -99,10 +93,9 @@
|
||||||
"eslint": "^5.13.0",
|
"eslint": "^5.13.0",
|
||||||
"eslint-config-airbnb": "^17.1.0",
|
"eslint-config-airbnb": "^17.1.0",
|
||||||
"eslint-plugin-import": "^2.16.0",
|
"eslint-plugin-import": "^2.16.0",
|
||||||
"istanbul": "^0.4.3",
|
|
||||||
"mocha": "^5.2.0",
|
"mocha": "^5.2.0",
|
||||||
"nodemon": "^1.18.10",
|
"nodemon": "^1.18.10",
|
||||||
"supertest": "^3.4.2",
|
"supertest": "^4.0.2",
|
||||||
"tmp": "0.0.33"
|
"tmp": "0.1.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue