aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
diff options
context:
space:
mode:
authorLibravatar Markus Hatvan <markus_hatvan@aon.at>2021-09-18 11:15:25 +0200
committerLibravatar GitHub <noreply@github.com>2021-09-18 11:15:25 +0200
commitd4101a48b3eee8b1fb177831aa02a4b4fbec2588 (patch)
treec92f2fbe91197fde8589207463d0d6526b4ff76b /package.json
parent5.6.3-nightly.6 [skip ci] (diff)
downloadferdium-app-d4101a48b3eee8b1fb177831aa02a4b4fbec2588.tar.gz
ferdium-app-d4101a48b3eee8b1fb177831aa02a4b4fbec2588.tar.zst
ferdium-app-d4101a48b3eee8b1fb177831aa02a4b4fbec2588.zip
chore: convert various files from JS to TS (#1959)
Diffstat (limited to 'package.json')
-rw-r--r--package.json13
1 files changed, 7 insertions, 6 deletions
diff --git a/package.json b/package.json
index 8a75cc230..4c88ce472 100644
--- a/package.json
+++ b/package.json
@@ -17,7 +17,7 @@
17 }, 17 },
18 "engine-strict": true, 18 "engine-strict": true,
19 "scripts": { 19 "scripts": {
20 "prepare": "node scripts/prepare.js", 20 "prepare": "ts-node scripts/prepare.ts",
21 "start": "electron ./build", 21 "start": "electron ./build",
22 "start:local": "cross-env USE_LOCAL_API=1 npm start", 22 "start:local": "cross-env USE_LOCAL_API=1 npm start",
23 "start:live": "cross-env USE_LIVE_API=1 npm start", 23 "start:live": "cross-env USE_LIVE_API=1 npm start",
@@ -38,14 +38,14 @@
38 "reformat-files": "./node_modules/.bin/prettier --ignore-path .eslintignore --write --require-pragma \"**/*.{js,jsx,scss}\"", 38 "reformat-files": "./node_modules/.bin/prettier --ignore-path .eslintignore --write --require-pragma \"**/*.{js,jsx,scss}\"",
39 "packages": "npx lerna publish --no-git-tag-version", 39 "packages": "npx lerna publish --no-git-tag-version",
40 "uidev": "cd uidev && webpack-dev-server", 40 "uidev": "cd uidev && webpack-dev-server",
41 "postinstall": "node scripts/postinstall.js", 41 "postinstall": "ts-node scripts/postinstall.ts",
42 "apply-branding": "node ./src/i18n/apply-branding.js", 42 "apply-branding": "ts-node ./src/i18n/apply-branding.ts",
43 "update-submodules": "git submodule update --remote --force", 43 "update-submodules": "git submodule update --remote --force",
44 "prepare-code": "npm run lint && npm run reformat-files && npm run manage-translations && npm run apply-branding", 44 "prepare-code": "npm run lint && npm run reformat-files && npm run manage-translations && npm run apply-branding",
45 "build-theme-info": "node scripts/build-theme-info.js", 45 "link-readme": "ts-node scripts/link-readme.ts",
46 "link-readme": "node scripts/link-readme.js",
47 "minify-images": "./scripts/minify-images.sh", 46 "minify-images": "./scripts/minify-images.sh",
48 "start:server": "node src/internal-server/test.js" 47 "start:server": "ts-node src/internal-server/test.ts",
48 "add-crowdin-contributors": "ts-node scripts/add-crowdin-contributors.ts"
49 }, 49 },
50 "keywords": [], 50 "keywords": [],
51 "author": "Amine Mouafik <amine@mouafik.fr>", 51 "author": "Amine Mouafik <amine@mouafik.fr>",
@@ -217,6 +217,7 @@
217 "terser": "4.8.0", 217 "terser": "4.8.0",
218 "ts-loader": "5.4.5", 218 "ts-loader": "5.4.5",
219 "ts-mocha": "8.0.0", 219 "ts-mocha": "8.0.0",
220 "ts-node": "10.2.1",
220 "typescript": "3.9.10", 221 "typescript": "3.9.10",
221 "wait-on": "6.0.0", 222 "wait-on": "6.0.0",
222 "webpack": "4.46.0", 223 "webpack": "4.46.0",