-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to 1.1.0 and which to electron-builder
- Loading branch information
Showing
2 changed files
with
452 additions
and
375 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,26 @@ | ||
{ | ||
"name": "Lionshare", | ||
"version": "1.0.0", | ||
"version": "1.1.0", | ||
"description": "Simple cryptocurrency portfolio for OS X", | ||
"main": "desktop/index.js", | ||
"scripts": { | ||
"clean": "./node_modules/.bin/rimraf desktop/dist dist/*", | ||
"build:webpack": "cross-env NODE_ENV=production BUILD_DEV=false webpack --config desktop/webpack/webpack.config.prod.js --progress --colors --display-error-details", | ||
"build:electron": "cross-env NODE_ENV=production electron-packager . --platform=darwin --arch=x64 --overwrite --prune --ignore=dist --icon src/assets/icons/appicon.icns --app-bundle-id='com.jorilallo.lionshare' --osx-sign", | ||
"build:zip": "rm -rf Lionshare-macOS && mv Lionshare-darwin-x64 Lionshare-macOS && zip -r -y dist/Lionshare-macOS.zip Lionshare-macOS/Lionshare.app", | ||
"build": "npm run clean && npm run build:webpack && npm run build:electron && npm run build:zip", | ||
"build": "npm run clean && npm run build:webpack", | ||
"pack": "npm run build && build --dir", | ||
"dist": "npm run build && build", | ||
"start": "ENV=development electron desktop", | ||
"dev": "concurrently -k 'node desktop/server.dev.js' 'npm start'", | ||
"lint": "eslint src" | ||
}, | ||
"build": { | ||
"appId": "com.jorilallo.lionshare", | ||
"icon": "src/assets/icons/appicon.icns", | ||
"files": "!dist/*", | ||
"mac": { | ||
"target": "zip" | ||
} | ||
}, | ||
"author": "Jori Lallo <[email protected]>, Ben Jennings <[email protected]>, Maksim Stepanenko <[email protected]>", | ||
"license": "MIT", | ||
"dependencies": { | ||
|
@@ -24,7 +32,6 @@ | |
"babel-preset-es2015": "^6.3.13", | ||
"babel-preset-react": "^6.3.13", | ||
"babel-preset-stage-0": "^6.5.0", | ||
"electron": "^1.4.13", | ||
"electron-config": "^0.2.1", | ||
"electron-is-dev": "^0.1.2", | ||
"electron-machine-id": "^1.0.9", | ||
|
@@ -37,10 +44,11 @@ | |
"cross-env": "^1.0.7", | ||
"css-loader": "^0.23.1", | ||
"dotenv": "^2.0.0", | ||
"electron": "^1.4.15", | ||
"electron-builder": "^12.3.1", | ||
"eslint": "^1.10.3", | ||
"eslint-config-airbnb": "^5.0.0", | ||
"eslint-plugin-react": "^3.16.1", | ||
"electron-packager": "^8.4.0", | ||
"exports-loader": "^0.6.3", | ||
"express": "^4.13.4", | ||
"file-loader": "^0.8.5", | ||
|
Oops, something went wrong.