diff --git a/check-translations/.eslintrc.js b/check-translations/.eslintrc.js index c6ef8183ad..56bb1d0620 100644 --- a/check-translations/.eslintrc.js +++ b/check-translations/.eslintrc.js @@ -1,6 +1,6 @@ module.exports = { extends: '../.eslintrc.js', rules: { - "import/no-extraneous-dependencies": ["error", {"devDependencies": true}] - } + 'import/no-extraneous-dependencies': ['error', { devDependencies: true }], + }, } diff --git a/package.json b/package.json index d29b7fb2a4..f303074020 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,6 @@ "node-sass": "~4.14.0", "pouchdb": "~7.2.1", "pouchdb-adapter-memory": "~7.2.1", - "pouchdb-authentication": "~1.1.3", "pouchdb-find": "~7.2.1", "pouchdb-quick-search": "~1.3.0", "react": "~16.13.0", @@ -33,7 +32,6 @@ "react-scripts": "~3.4.0", "redux": "~4.0.5", "redux-thunk": "~2.3.0", - "relational-pouch": "~4.0.0", "shortid": "^2.2.15", "typescript": "~3.8.3", "uuid": "^8.0.0", @@ -77,7 +75,7 @@ "@types/validator": "~13.0.0", "@typescript-eslint/eslint-plugin": "~3.4.0", "@typescript-eslint/parser": "~3.4.0", - "chalk": "~4.1.0", + "chalk": "^4.0.0", "commitizen": "~4.1.2", "commitlint-config-cz": "~0.13.0", "cross-env": "~7.0.0", @@ -109,7 +107,7 @@ }, "scripts": { "analyze": "source-map-explorer 'build/static/js/*.js'", - "commit": "npx git-cz", + "commit": "npx git-cz --disable-emoji", "start": "npm run translation:check && react-scripts start", "build": "react-scripts build", "update": "npx npm-check -u", diff --git a/src/config/pouchdb.ts b/src/config/pouchdb.ts index f77de28534..848f237c44 100644 --- a/src/config/pouchdb.ts +++ b/src/config/pouchdb.ts @@ -1,4 +1,5 @@ -/* eslint-disable @typescript-eslint/camelcase, @typescript-eslint/no-var-requires */ +/* eslint-disable @typescript-eslint/no-var-requires */ +/* eslint-disable camelcase */ import PouchDB from 'pouchdb' import PouchAuth from 'pouchdb-authentication' import PouchdbFind from 'pouchdb-find'