summaryrefslogtreecommitdiff
path: root/example/application/package.json
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2019-08-20 13:51:06 +0300
committerValentin Popov <info@valentineus.link>2019-08-20 13:51:06 +0300
commit9c57d101f0181aa134190edb0b2e7aabdba1151f (patch)
tree41e2405204d001490ba76e272bc5d11020a2c357 /example/application/package.json
parentb3461bdcc0462bda7fad46b02f8307a0bc1166cd (diff)
downloadelectron-hot-reload-9c57d101f0181aa134190edb0b2e7aabdba1151f.tar.xz
electron-hot-reload-9c57d101f0181aa134190edb0b2e7aabdba1151f.zip
Added example application
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'example/application/package.json')
-rw-r--r--example/application/package.json31
1 files changed, 31 insertions, 0 deletions
diff --git a/example/application/package.json b/example/application/package.json
new file mode 100644
index 0000000..0a9232f
--- /dev/null
+++ b/example/application/package.json
@@ -0,0 +1,31 @@
+{
+ "name": "application",
+ "version": "1.0.0",
+ "main": "dist/main.js",
+ "author": "Valentin Popov <info@valentineus.link>",
+ "license": "MIT",
+ "private": true,
+ "scripts": {
+ "build": "webpack --config webpack.config.js --progress",
+ "lint": "standard ./src/**/*.js",
+ "lint:fix": "yarn run lint --fix",
+ "start": "electron ."
+ },
+ "devDependencies": {
+ "@babel/cli": "^7.5.5",
+ "@babel/core": "^7.5.5",
+ "@babel/plugin-transform-runtime": "^7.5.5",
+ "@babel/preset-env": "^7.5.5",
+ "@babel/runtime": "^7.5.5",
+ "babel-loader": "^8.0.6",
+ "electron": "^6.0.3",
+ "html-webpack-plugin": "^3.2.0",
+ "standard": "^14.0.0",
+ "webpack": "^4.39.2",
+ "webpack-cli": "^3.3.7"
+ },
+ "dependencies": {
+ "jsonfile": "^5.0.0",
+ "moment": "^2.24.0"
+ }
+}