{ "name": "@kremalicious/blowfish", "productName": "Blowfish", "version": "1.4.3", "description": "🐡 Simple Electron-based desktop app to retrieve and display your total Ocean Token balances.", "main": "./src/main/index.js", "scripts": { "start": "electron .", "test": "npm run lint && npm run jest", "test:watch": "npm run jest -- --watch", "jest": "NODE_ENV=test jest -c tests/jest.config.js", "lint": "eslint --ignore-path .gitignore ./src/**/*.{js,jsx} && stylelint --ignore-path .gitignore ./src/**/*.{css,scss}", "copy:icons": "copy 'src/renderer/images/icon*' build/", "build:react": "cross-env NODE_ENV=production next build src/renderer && next export src/renderer && npm run copy:icons", "build:electron": "electron-builder build -ml -p never", "build:electron:win": "electron-builder build -w -p never", "dist": "./scripts/release-prepare.sh", "release": "release-it --non-interactive", "changelog": "auto-changelog -p", "format": "prettier --write --ignore-path .gitignore 'src/**/*.{js,jsx,json,css,scss}'" }, "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.4", "@oceanprotocol/keeper-contracts": "^0.13.2", "axios": "^0.19.2", "electron-is-dev": "^1.2.0", "electron-next": "^3.1.5", "electron-store": "^5.2.0", "ethereum-address": "^0.0.4", "ethereum-blockies": "github:MyEtherWallet/blockies", "ethjs": "^0.4.0", "ms": "^2.1.2", "shortid": "^2.2.15", "swr": "^0.2.3" }, "devDependencies": { "@babel/core": "^7.10.2", "@babel/preset-env": "^7.10.3", "@jest-runner/electron": "^3.0.0", "@react-mock/state": "^0.1.8", "@svgr/webpack": "^5.4.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^10.3.0", "auto-changelog": "^2.1.0", "babel-eslint": "^10.1.0", "babel-jest": "^26.0.1", "copy": "^0.3.2", "cross-env": "^7.0.2", "dotenv": "^8.2.0", "electron": "^9.0.4", "electron-builder": "^22.7.0", "electron-devtools-installer": "^3.0.0", "eslint": "^7.3.0", "eslint-config-prettier": "^6.11.0", "eslint-plugin-react": "^7.20.0", "identity-obj-proxy": "^3.0.0", "jest": "^26.0.1", "next": "^9.4.4", "prettier": "^2.0.5", "react": "^16.13.1", "react-dom": "^16.13.1", "react-pose": "^4.0.10", "release-it": "^13.6.3", "stylelint": "^13.6.1", "stylelint-prettier": "^1.1.2" }, "browserslist": "electron >= 8.0", "build": { "appId": "com.kremalicious.blowfish", "files": [ "./src/main/**/*", "./src/renderer/out/**/*", "./src/*.js", "package.json" ], "mac": { "category": "public.app-category.finance", "identity": null, "darkModeSupport": true }, "linux": { "target": [ "deb", "snap", "AppImage" ], "category": "Office", "executableName": "Blowfish", "artifactName": "${productName}-${version}.${ext}" } }, "release-it": { "hooks": { "after:init": "npm test", "after:bump": "npm run changelog", "before:release": "npm run dist" }, "git": { "tagName": "v${version}" }, "github": { "release": true, "assets": [ "dist/*.exe", "dist/*.zip", "dist/*.dmg", "dist/*.AppImage", "dist/*.deb", "dist/*.snap", "dist/latest*.yml", "dist/*.blockmap" ] }, "npm": { "publish": false } } }