Skip to content
This repository has been archived by the owner on Jun 20, 2022. It is now read-only.

Commit

Permalink
chore(deps): upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
arielsvg committed Feb 16, 2021
1 parent c17dbac commit 8994088
Show file tree
Hide file tree
Showing 4 changed files with 103 additions and 98 deletions.
4 changes: 3 additions & 1 deletion .eslintrc
Expand Up @@ -3,10 +3,12 @@
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"semistandard",
"prettier"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
/** Style */
"semi": 1,
Expand Down
32 changes: 15 additions & 17 deletions package.json
Expand Up @@ -10,51 +10,49 @@
"dependencies": {
"compare-versions": "^3.6.0",
"decrypt": "github:standardnotes/decrypt#master",
"electron-log": "^4.2.2",
"electron-updater": "^4.3.4",
"electron-log": "^4.3.1",
"electron-updater": "^4.3.5",
"mime-types": "^2.1.27",
"mobx": "^6.0.3"
"mobx": "^6.1.6"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@babel/core": "^7.12.16",
"@babel/preset-env": "^7.12.16",
"@commitlint/config-conventional": "^9.1.1",
"@types/lodash": "^4.14.159",
"@types/mime-types": "^2.1.0",
"@types/node": "^12.12.54",
"@types/proxyquire": "^1.3.28",
"@types/yauzl": "^2.9.1",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"ava": "^3.11.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-loader": "^8.2.2",
"commitlint": "^9.1.0",
"copy-webpack-plugin": "^6.0.3",
"electron": "^9.4.0",
"electron-builder": "^22.9.1",
"electron-notarize": "^1.0.0",
"eslint": "^7.6.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-semistandard": "^15.0.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"file-loader": "^6.0.0",
"husky": "^4.2.5",
"js-yaml": "^3.14.0",
"lodash": "^4.17.19",
"lodash": "^4.17.20",
"mime-types": "^2.1.27",
"npm-run-all": "^4.1.5",
"pre-push": "^0.1.1",
"prettier": "^2.0.5",
"prettier": "^2.2.1",
"proxyquire": "^2.1.3",
"rimraf": "^3.0.2",
"ts-loader": "^8.0.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.7",
"ts-loader": "^8.0.17",
"ts-node": "^9.1.1",
"typescript": "^4.1.5",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-merge": "^5.1.1"
Expand Down Expand Up @@ -126,7 +124,7 @@
"change-version": "node scripts/change-version.mjs",
"lint": "npm-run-all --parallel lint:*",
"lint:formatting": "prettier --check .",
"lint:eslint": "eslint app/index.ts app/application.ts app/javascripts/**/*.ts test/*.ts scripts/*.js",
"lint:eslint": "eslint app/index.ts app/application.ts app/javascripts/**/*.ts",
"lint:types": "tsc --noEmit",
"pack": "build --dir",
"postinstall": "electron-builder install-app-deps",
Expand Down
6 changes: 5 additions & 1 deletion tsconfig.json
Expand Up @@ -17,5 +17,9 @@
"@web/*": ["./web/app/assets/javascripts/*"]
}
},
"files": ["app/index.ts", "app/javascripts/renderer/renderer.ts"]
"files": [
"app/index.ts",
"app/javascripts/renderer/renderer.ts",
"app/javascripts/renderer/grantKeyringAccess.ts"
]
}

0 comments on commit 8994088

Please sign in to comment.