aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2019-08-19 23:57:52 +0300
committerValentin Popov <info@valentineus.link>2019-08-19 23:57:52 +0300
commita6b4bc15ebcfc3aa358fcfc95967da56381f0603 (patch)
treeced42ddcf0612c9caf9d183f4f44c7913f3f51fb /package.json
parent03dd1ac6af558886acae1296832459827ade54c3 (diff)
downloadelectron-hot-reload-a6b4bc15ebcfc3aa358fcfc95967da56381f0603.tar.xz
electron-hot-reload-a6b4bc15ebcfc3aa358fcfc95967da56381f0603.zip
Initial TypeScript
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'package.json')
-rw-r--r--package.json16
1 files changed, 15 insertions, 1 deletions
diff --git a/package.json b/package.json
index 8770ad1..dddd9e1 100644
--- a/package.json
+++ b/package.json
@@ -5,5 +5,19 @@
"repository": "git@github.com:valentineus/ts-electron-reloader.git",
"author": "Valentin Popov <info@valentineus.link>",
"license": "MIT",
- "private": false
+ "private": false,
+ "scripts": {
+ "compile": "tsc --pretty --project ./",
+ "compile:watch": "yarn run compile --watch",
+ "lint": "tslint --format codeFrame --project ./",
+ "lint:fix": "yarn run lint --fix"
+ },
+ "devDependencies": {
+ "tslint": "^5.18.0",
+ "tslint-config-airbnb": "^5.11.1",
+ "tslint-consistent-codestyle": "^1.15.1",
+ "tslint-eslint-rules": "^5.4.0",
+ "tslint-microsoft-contrib": "^6.2.0",
+ "typescript": "^3.5.3"
+ }
}