update dependencies
This commit is contained in:
parent
f8c7fa2b45
commit
f9601492dc
3 changed files with 403 additions and 462 deletions
26
package.json
26
package.json
|
@ -44,15 +44,15 @@
|
|||
"axios": "^0.19.0",
|
||||
"bcryptjs": "^2.4.3",
|
||||
"body-parser": "^1.18.3",
|
||||
"bootstrap": "^4.3.1",
|
||||
"bootstrap": "^4.4.1",
|
||||
"config": "^3.2.4",
|
||||
"consola": "^2.11.0",
|
||||
"cookie-parser": "^1.4.4",
|
||||
"cors": "^2.8.5",
|
||||
"cross-env": "^6.0.0",
|
||||
"dayjs": "^1.8.17",
|
||||
"element-ui": "^2.12.0",
|
||||
"email-templates": "^6.0.2",
|
||||
"element-ui": "^2.13.0",
|
||||
"email-templates": "^6.0.6",
|
||||
"express": "^4.17.1",
|
||||
"express-jwt": "^5.3.1",
|
||||
"express-middleware-log": "^1.2.0",
|
||||
|
@ -69,29 +69,29 @@
|
|||
"node-fetch": "^2.6.0",
|
||||
"nuxt": "^2.10.2",
|
||||
"nuxt-express-module": "^0.0.11",
|
||||
"pg": "^7.12.1",
|
||||
"pg": "^7.14.0",
|
||||
"sanitize-html": "^1.20.1",
|
||||
"sass-loader": "^8.0.0",
|
||||
"sequelize": "^5.21.2",
|
||||
"sequelize-cli": "^5.5.1",
|
||||
"sharp": "^0.23.2",
|
||||
"sqlite3": "^4.1.0",
|
||||
"sharp": "^0.23.4",
|
||||
"sqlite3": "^4.1.1",
|
||||
"url": "^0.11.0",
|
||||
"v-calendar": "^1.0.0-beta.16",
|
||||
"vue-awesome": "^4.0.0",
|
||||
"vue-clipboard2": "^0.3.1",
|
||||
"vue-i18n": "^8.15.0",
|
||||
"yargs": "^14.0.0"
|
||||
"vue-i18n": "^8.15.1",
|
||||
"yargs": "^15.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@nuxtjs/eslint-config": "^1.1.2",
|
||||
"@nuxtjs/eslint-config": "^2.0.0",
|
||||
"babel-eslint": "^10.0.3",
|
||||
"eslint": "^6.6.0",
|
||||
"eslint-config-prettier": "^6.5.0",
|
||||
"eslint": "^6.7.2",
|
||||
"eslint-config-prettier": "^6.7.0",
|
||||
"eslint-config-standard": ">=14.1.0",
|
||||
"eslint-loader": "^3.0.0",
|
||||
"eslint-plugin-import": ">=2.17.3",
|
||||
"eslint-plugin-jest": ">=23.0.2",
|
||||
"eslint-plugin-jest": ">=23.1.1",
|
||||
"eslint-plugin-node": ">=10.0.0",
|
||||
"eslint-plugin-nuxt": ">=0.5.0",
|
||||
"eslint-plugin-prettier": "^3.1.1",
|
||||
|
@ -100,7 +100,7 @@
|
|||
"eslint-plugin-vue": "^6.0.1",
|
||||
"jsdoc": "^3.6.3",
|
||||
"less-loader": "^5.0.0",
|
||||
"nodemon": "^1.19.4",
|
||||
"nodemon": "^2.0.1",
|
||||
"prettier": "^1.19.1",
|
||||
"pug-plain-loader": "^1.0.0",
|
||||
"webpack-cli": "^3.3.10"
|
||||
|
|
|
@ -97,7 +97,7 @@ const Helpers = {
|
|||
}
|
||||
}
|
||||
|
||||
fedi_user = await fetch(URL, { headers: { 'Accept': 'application/jrd+json, application/json' } })
|
||||
fedi_user = await fetch(URL, { headers: { Accept: 'application/jrd+json, application/json' } })
|
||||
.then(res => {
|
||||
if (!res.ok) {
|
||||
debug('[ERR] Actor %s => %s', URL, res.statusText)
|
||||
|
@ -123,7 +123,7 @@ const Helpers = {
|
|||
if (instance) { return instance }
|
||||
}
|
||||
|
||||
instance = await fetch(`${instance_url}/api/v1/instance`, { headers: { 'Accept': 'application/json' } })
|
||||
instance = await fetch(`${instance_url}/api/v1/instance`, { headers: { Accept: 'application/json' } })
|
||||
.then(res => res.json())
|
||||
.then(instance => {
|
||||
const data = {
|
||||
|
|
Loading…
Reference in a new issue