2019-05-05 13:34:21 +02:00
|
|
|
{
|
|
|
|
"name": "ocean-balance",
|
|
|
|
"productName": "Ocean",
|
|
|
|
"version": "1.0.0",
|
2019-05-06 01:04:17 +02:00
|
|
|
"description": "🐡 Simple Electron-based desktop app to retrieve and display your total Ocean Token balances.",
|
2019-05-05 13:34:21 +02:00
|
|
|
"main": "./src/main.js",
|
|
|
|
"scripts": {
|
2019-05-06 01:04:17 +02:00
|
|
|
"test": "eslint ./src/**/*.{js,jsx} && stylelint ./src/**/*.css",
|
2019-05-05 13:34:21 +02:00
|
|
|
"start": "webpack-dev-server --hot --host 0.0.0.0 --config=./webpack.dev.config.js",
|
2019-05-11 22:55:51 +02:00
|
|
|
"build": "webpack --mode production --config webpack.common.config.js",
|
|
|
|
"package": "npm-run-all --parallel package:mac package:win package:linux && open ./dist",
|
|
|
|
"package:mac": "electron-packager . --overwrite --asar --platform=darwin --arch=x64 --icon=src/app/images/icon.icns --prune --out=./dist",
|
|
|
|
"package:linux": "electron-packager . --overwrite --asar --platform=linux --arch=x64 --icon=src/app/images/iconset/icon1024.png --prune --out=./dist",
|
|
|
|
"package:win": "electron-packager . --overwrite --asar --platform=win32 --arch=ia32 --icon=src/app/images/icon.ico --prune --out=./dist --version-string.CompanyName=CE --version-string.FileDescription=CE --version-string.ProductName=\"Ocean\"",
|
|
|
|
"create-installer-mac": "electron-installer-dmg ./dist/Ocean-darwin-x64/Ocean.app Ocean --out=./dist --overwrite --icon=src/app/images/icon.icns",
|
|
|
|
"dist": "npm run build && npm run package"
|
2019-05-05 13:34:21 +02:00
|
|
|
},
|
|
|
|
"repository": "https://github.com/kremalicious/ocean-balance.git",
|
|
|
|
"author": "Matthias Kretschmann",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2019-05-06 23:39:59 +02:00
|
|
|
"@coingecko/cryptoformat": "^0.3.1",
|
2019-05-08 01:02:02 +02:00
|
|
|
"@reach/router": "^1.2.1",
|
2019-05-09 23:28:58 +02:00
|
|
|
"ethereum-address": "0.0.4",
|
2019-05-05 13:34:21 +02:00
|
|
|
"ms": "^2.1.1",
|
|
|
|
"react": "^16.8.6",
|
2019-05-08 21:41:24 +02:00
|
|
|
"react-blockies": "^1.4.1",
|
2019-05-10 22:22:33 +02:00
|
|
|
"react-dom": "^16.8.6",
|
2019-05-13 22:54:40 +02:00
|
|
|
"react-pose": "^4.0.8",
|
|
|
|
"react-touchbar-electron": "0.0.1"
|
2019-05-05 13:34:21 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@babel/core": "^7.4.4",
|
|
|
|
"@babel/plugin-proposal-class-properties": "^7.4.4",
|
|
|
|
"@babel/plugin-transform-runtime": "^7.4.4",
|
|
|
|
"@babel/preset-env": "^7.4.4",
|
|
|
|
"@babel/preset-react": "^7.0.0",
|
|
|
|
"@babel/runtime": "^7.4.4",
|
2019-05-09 00:58:05 +02:00
|
|
|
"@svgr/webpack": "^4.2.0",
|
2019-05-05 13:34:21 +02:00
|
|
|
"babel-eslint": "^10.0.1",
|
|
|
|
"babel-loader": "^8.0.5",
|
|
|
|
"css-loader": "^2.1.1",
|
2019-05-06 01:04:17 +02:00
|
|
|
"electron": "^5.0.1",
|
2019-05-05 13:34:21 +02:00
|
|
|
"electron-devtools-installer": "^2.2.4",
|
|
|
|
"electron-installer-dmg": "^2.0.0",
|
|
|
|
"electron-packager": "^13.1.1",
|
2019-05-08 01:02:02 +02:00
|
|
|
"electron-store": "^3.2.0",
|
2019-05-05 13:34:21 +02:00
|
|
|
"eslint": "^5.16.0",
|
|
|
|
"eslint-config-prettier": "^4.2.0",
|
|
|
|
"eslint-plugin-react": "^7.13.0",
|
|
|
|
"file-loader": "^3.0.1",
|
|
|
|
"html-webpack-plugin": "^3.2.0",
|
2019-05-11 22:55:51 +02:00
|
|
|
"npm-run-all": "^4.1.5",
|
2019-05-05 13:34:21 +02:00
|
|
|
"prettier": "^1.17.0",
|
|
|
|
"prettier-stylelint": "^0.4.2",
|
|
|
|
"style-loader": "^0.23.1",
|
|
|
|
"stylelint": "^10.0.1",
|
|
|
|
"stylelint-config-standard": "^18.3.0",
|
2019-05-11 21:56:33 +02:00
|
|
|
"webpack": "^4.31.0",
|
2019-05-06 01:04:17 +02:00
|
|
|
"webpack-cli": "^3.3.2",
|
2019-05-05 13:34:21 +02:00
|
|
|
"webpack-dev-server": "^3.3.1"
|
|
|
|
}
|
|
|
|
}
|