summaryrefslogtreecommitdiff
path: root/test/application/package.json
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2019-08-20 01:46:41 +0300
committerValentin Popov <info@valentineus.link>2019-08-20 01:46:41 +0300
commit22989465538f64e86fe5ac0235e322133b95056c (patch)
tree7c4f1f92310562e8087e3314dc2beac4661b3be1 /test/application/package.json
parenta6b4bc15ebcfc3aa358fcfc95967da56381f0603 (diff)
downloadelectron-hot-reload-22989465538f64e86fe5ac0235e322133b95056c.tar.xz
electron-hot-reload-22989465538f64e86fe5ac0235e322133b95056c.zip
Initial test application
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'test/application/package.json')
-rw-r--r--test/application/package.json25
1 files changed, 25 insertions, 0 deletions
diff --git a/test/application/package.json b/test/application/package.json
new file mode 100644
index 0000000..2f6f114
--- /dev/null
+++ b/test/application/package.json
@@ -0,0 +1,25 @@
+{
+ "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/preset-env": "^7.5.5",
+ "babel-loader": "^8.0.6",
+ "electron": "^6.0.2",
+ "html-webpack-plugin": "^3.2.0",
+ "standard": "^14.0.0",
+ "webpack": "^4.39.2",
+ "webpack-cli": "^3.3.7"
+ }
+}