2019-05-05 13:34:21 +02:00
|
|
|
{
|
2019-05-25 03:25:00 +02:00
|
|
|
"name": "@kremalicious/blowfish",
|
2019-05-19 15:24:25 +02:00
|
|
|
"productName": "Blowfish",
|
2019-05-25 03:25:00 +02:00
|
|
|
"version": "1.1.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-25 03:16:53 +02:00
|
|
|
"main": "./src/main/index.js",
|
2019-05-05 13:34:21 +02:00
|
|
|
"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",
|
2019-05-17 00:19:00 +02:00
|
|
|
"package": "electron-builder build -mwl && open ./dist",
|
2019-05-27 00:46:13 +02:00
|
|
|
"dist": "npm run build && npm run package",
|
|
|
|
"release": "release-it --non-interactive"
|
2019-05-05 13:34:21 +02:00
|
|
|
},
|
2019-05-19 15:24:25 +02:00
|
|
|
"repository": "https://github.com/kremalicious/blowfish.git",
|
|
|
|
"homepage": "https://github.com/kremalicious/blowfish",
|
2019-05-17 00:19:00 +02:00
|
|
|
"author": {
|
|
|
|
"name": "Matthias Kretschmann",
|
|
|
|
"email": "m@kretschmann.io",
|
|
|
|
"url": "https://matthiaskretschmann.com"
|
|
|
|
},
|
2019-05-05 13:34:21 +02:00
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2019-05-06 23:39:59 +02:00
|
|
|
"@coingecko/cryptoformat": "^0.3.1",
|
2019-05-09 23:28:58 +02:00
|
|
|
"ethereum-address": "0.0.4",
|
2019-05-25 03:16:53 +02:00
|
|
|
"ms": "^2.1.1"
|
2019-05-05 13:34:21 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-05-23 00:25:20 +02:00
|
|
|
"@babel/core": "^7.4.5",
|
2019-05-05 13:34:21 +02:00
|
|
|
"@babel/plugin-proposal-class-properties": "^7.4.4",
|
|
|
|
"@babel/plugin-transform-runtime": "^7.4.4",
|
2019-05-23 00:25:20 +02:00
|
|
|
"@babel/preset-env": "^7.4.5",
|
2019-05-05 13:34:21 +02:00
|
|
|
"@babel/preset-react": "^7.0.0",
|
2019-05-23 00:25:20 +02:00
|
|
|
"@babel/runtime": "^7.4.5",
|
2019-05-25 03:16:53 +02:00
|
|
|
"@reach/router": "^1.2.1",
|
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",
|
2019-05-19 14:02:42 +02:00
|
|
|
"babel-loader": "^8.0.6",
|
2019-05-17 00:19:00 +02:00
|
|
|
"copy-webpack-plugin": "^5.0.3",
|
2019-05-05 13:34:21 +02:00
|
|
|
"css-loader": "^2.1.1",
|
2019-05-25 02:33:33 +02:00
|
|
|
"electron": "^5.0.2",
|
2019-05-17 00:19:00 +02:00
|
|
|
"electron-builder": "^20.40.2",
|
2019-05-05 13:34:21 +02:00
|
|
|
"electron-devtools-installer": "^2.2.4",
|
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",
|
|
|
|
"prettier": "^1.17.0",
|
|
|
|
"prettier-stylelint": "^0.4.2",
|
2019-05-25 03:16:53 +02:00
|
|
|
"react": "^16.8.6",
|
|
|
|
"react-blockies": "^1.4.1",
|
|
|
|
"react-dom": "^16.8.6",
|
|
|
|
"react-pose": "^4.0.8",
|
2019-05-27 00:46:13 +02:00
|
|
|
"release-it": "^12.2.1",
|
2019-05-05 13:34:21 +02:00
|
|
|
"style-loader": "^0.23.1",
|
|
|
|
"stylelint": "^10.0.1",
|
|
|
|
"stylelint-config-standard": "^18.3.0",
|
2019-05-25 02:33:33 +02:00
|
|
|
"webpack": "^4.32.2",
|
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"
|
2019-05-17 00:19:00 +02:00
|
|
|
},
|
|
|
|
"browserslist": "electron >= 5.0",
|
|
|
|
"build": {
|
2019-05-19 15:24:25 +02:00
|
|
|
"appId": "com.kremalicious.blowfish",
|
2019-05-17 00:19:00 +02:00
|
|
|
"files": [
|
|
|
|
"./build/**/*",
|
2019-05-25 03:16:53 +02:00
|
|
|
"./src/main/**/*",
|
2019-05-17 00:19:00 +02:00
|
|
|
"./src/*.js",
|
|
|
|
"package.json"
|
|
|
|
],
|
|
|
|
"mac": {
|
|
|
|
"category": "public.app-category.finance"
|
|
|
|
},
|
|
|
|
"linux": {
|
|
|
|
"target": [
|
|
|
|
"deb",
|
|
|
|
"rpm",
|
|
|
|
"snap",
|
|
|
|
"AppImage"
|
|
|
|
],
|
|
|
|
"category": "Office"
|
|
|
|
}
|
2019-05-27 00:46:13 +02:00
|
|
|
},
|
|
|
|
"release-it": {
|
|
|
|
"scripts": {
|
|
|
|
"beforeStart": "npm test",
|
|
|
|
"afterBump": "npm run dist",
|
|
|
|
"afterRelease": "echo Successfully released ${name} v${version} to ${repo.repository}."
|
|
|
|
},
|
|
|
|
"git": {
|
|
|
|
"tagName": "v${version}"
|
|
|
|
},
|
|
|
|
"github": {
|
|
|
|
"release": true,
|
|
|
|
"assets": [
|
|
|
|
"dist/*${version}*.exe",
|
|
|
|
"dist/*${version}-mac.zip",
|
|
|
|
"dist/*${version}.dmg",
|
|
|
|
"dist/*${version}.AppImage",
|
|
|
|
"dist/*${version}*.deb",
|
|
|
|
"dist/*${version}*.snap",
|
|
|
|
"dist/*${version}*.rpm"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"npm": {
|
|
|
|
"publish": false
|
|
|
|
}
|
2019-05-05 13:34:21 +02:00
|
|
|
}
|
|
|
|
}
|