aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2018-12-07 13:47:00 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2018-12-07 13:47:00 +0100
commit0cdc165ace53019371fc126d8d76817f1f2ed027 (patch)
tree1c98c3e31258c29ff2f49b748b9df16a892f66e6 /package.json
parentBump version to b20 (diff)
downloadferdium-app-0cdc165ace53019371fc126d8d76817f1f2ed027.tar.gz
ferdium-app-0cdc165ace53019371fc126d8d76817f1f2ed027.tar.zst
ferdium-app-0cdc165ace53019371fc126d8d76817f1f2ed027.zip
fix(Spellchecker): Dictionaries are now part of app instead of dynamic download
Diffstat (limited to 'package.json')
-rw-r--r--package.json14
1 files changed, 8 insertions, 6 deletions
diff --git a/package.json b/package.json
index 6c6adee5d..155be5f1d 100644
--- a/package.json
+++ b/package.json
@@ -17,12 +17,14 @@
17 "dev": "cross-env NODE_ENV=development gulp dev", 17 "dev": "cross-env NODE_ENV=development gulp dev",
18 "lint": "eslint src", 18 "lint": "eslint src",
19 "sign": "gulp sign", 19 "sign": "gulp sign",
20 "prebuild": "gulp build", 20 "compile": "gulp clean && gulp build",
21 "prebuild": "npm run compile && npm run dictionaries",
21 "build": "node_modules/.bin/electron-builder --publish onTag", 22 "build": "node_modules/.bin/electron-builder --publish onTag",
22 "rebuild": "node_modules/.bin/electron-rebuild", 23 "rebuild": "node_modules/.bin/electron-rebuild",
23 "commit": "git-cz", 24 "commit": "git-cz",
24 "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s", 25 "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
25 "reformat-files": "./node_modules/.bin/prettier --ignore-path .eslintignore --write --require-pragma \"**/*.{js,jsx,scss}\"" 26 "reformat-files": "./node_modules/.bin/prettier --ignore-path .eslintignore --write --require-pragma \"**/*.{js,jsx,scss}\"",
27 "dictionaries": "node ./build-helpers/installDictionaries.js"
26 }, 28 },
27 "keywords": [], 29 "keywords": [],
28 "author": "Stefan Malzner <stefan@adlk.io>", 30 "author": "Stefan Malzner <stefan@adlk.io>",
@@ -44,7 +46,6 @@
44 "electron-window-state": "^4.1.0", 46 "electron-window-state": "^4.1.0",
45 "fs-extra": "7.0.1", 47 "fs-extra": "7.0.1",
46 "gulp-cli": "1.2.2", 48 "gulp-cli": "1.2.2",
47 "hunspell-dict-downloader": "1.0.0",
48 "ini": "^1.3.4", 49 "ini": "^1.3.4",
49 "jshashes": "^1.0.6", 50 "jshashes": "^1.0.6",
50 "jsonwebtoken": "^7.4.1", 51 "jsonwebtoken": "^7.4.1",
@@ -84,7 +85,8 @@
84 }, 85 },
85 "devDependencies": { 86 "devDependencies": {
86 "@adlk/misty": "^0.1.1", 87 "@adlk/misty": "^0.1.1",
87 "@babel/core": "^7.0.0", 88 "@babel/cli": "7.0.0",
89 "@babel/core": "7.0.0",
88 "@babel/plugin-proposal-class-properties": "^7.0.0", 90 "@babel/plugin-proposal-class-properties": "^7.0.0",
89 "@babel/plugin-proposal-decorators": "^7.0.0", 91 "@babel/plugin-proposal-decorators": "^7.0.0",
90 "@babel/plugin-proposal-export-default-from": "^7.0.0", 92 "@babel/plugin-proposal-export-default-from": "^7.0.0",
@@ -93,8 +95,8 @@
93 "@babel/plugin-transform-regenerator": "^7.0.0", 95 "@babel/plugin-transform-regenerator": "^7.0.0",
94 "@babel/preset-env": "^7.0.0", 96 "@babel/preset-env": "^7.0.0",
95 "@babel/preset-react": "^7.0.0", 97 "@babel/preset-react": "^7.0.0",
96 "@babel/register": "^7.0.0", 98 "@babel/register": "7.0.0",
97 "babel-eslint": "^10.0.1", 99 "babel-eslint": "10.0.1",
98 "cross-env": "^5.0.5", 100 "cross-env": "^5.0.5",
99 "cz-conventional-changelog": "^2.0.0", 101 "cz-conventional-changelog": "^2.0.0",
100 "dotenv": "^4.0.0", 102 "dotenv": "^4.0.0",