aboutsummaryrefslogtreecommitdiff
path: root/example/application/package.json
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2019-08-22 00:12:17 +0300
committerGitHub <noreply@github.com>2019-08-22 00:12:17 +0300
commit6d5cb2611be73e4c3b0787ac00fe28e4c243417e (patch)
tree5b65999c40a916d0e4bb5f878b30cee236045e94 /example/application/package.json
parent03dd1ac6af558886acae1296832459827ade54c3 (diff)
parent8147b911dec725f50fb79e22dd149e13eca02d81 (diff)
downloadelectron-hot-reload-6d5cb2611be73e4c3b0787ac00fe28e4c243417e.tar.xz
electron-hot-reload-6d5cb2611be73e4c3b0787ac00fe28e4c243417e.zip
Merge pull request #1 from valentineus/develop
Develop
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"
+ }
+}