blowfish/package.json

85 lines
2.5 KiB
JSON

{
"name": "blowfish",
"productName": "Blowfish",
"version": "1.0.2",
"description": "🐡 Simple Electron-based desktop app to retrieve and display your total Ocean Token balances.",
"main": "./src/main.js",
"scripts": {
"test": "eslint ./src/**/*.{js,jsx} && stylelint ./src/**/*.css",
"start": "webpack-dev-server --hot --host 0.0.0.0 --config=./webpack.dev.config.js",
"build": "webpack --mode production --config webpack.common.config.js",
"package": "electron-builder build -mwl && open ./dist",
"dist": "npm run build && npm run package"
},
"repository": "https://github.com/kremalicious/blowfish.git",
"homepage": "https://github.com/kremalicious/blowfish",
"author": {
"name": "Matthias Kretschmann",
"email": "m@kretschmann.io",
"url": "https://matthiaskretschmann.com"
},
"license": "MIT",
"dependencies": {
"@coingecko/cryptoformat": "^0.3.1",
"@reach/router": "^1.2.1",
"ethereum-address": "0.0.4",
"ms": "^2.1.1",
"react": "^16.8.6",
"react-blockies": "^1.4.1",
"react-dom": "^16.8.6",
"react-pose": "^4.0.8",
"react-touchbar-electron": "0.0.1"
},
"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",
"@svgr/webpack": "^4.2.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^2.1.1",
"electron": "^6.0.0-beta.3",
"electron-builder": "^20.40.2",
"electron-devtools-installer": "^2.2.4",
"electron-store": "^3.2.0",
"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",
"style-loader": "^0.23.1",
"stylelint": "^10.0.1",
"stylelint-config-standard": "^18.3.0",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.3.1"
},
"browserslist": "electron >= 5.0",
"build": {
"appId": "com.kremalicious.blowfish",
"files": [
"./build/**/*",
"./src/*.js",
"package.json"
],
"mac": {
"category": "public.app-category.finance"
},
"linux": {
"target": [
"deb",
"rpm",
"snap",
"AppImage"
],
"category": "Office"
}
}
}