{ "name": "@kremalicious/blowfish", "productName": "Blowfish", "version": "1.5.2", "description": "🐡 Simple Electron-based desktop app to retrieve and display your total Ocean Token balances.", "main": "app/background.js", "scripts": { "start": "nextron", "build": "nextron build --all", "postinstall": "electron-builder install-app-deps", "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}", "format": "prettier --write --ignore-path .gitignore 'src/**/*.{js,jsx,json,css,scss}'", "release": "release-it", "changelog": "auto-changelog -p" }, "repository": "https://github.com/kremalicious/blowfish.git", "homepage": "https://getblow.fish", "author": { "name": "Matthias Kretschmann", "email": "m@kretschmann.io", "url": "https://matthiaskretschmann.com" }, "license": "MIT", "dependencies": { "@coingecko/cryptoformat": "^0.4.2", "@oceanprotocol/contracts": "^0.5.4", "axios": "^0.20.0", "electron-store": "^6.0.1", "ethereum-address": "^0.0.4", "ethereum-blockies": "github:MyEtherWallet/blockies", "ethjs": "^0.4.0", "ms": "^2.1.2", "shortid": "^2.2.15", "swr": "^0.3.5" }, "devDependencies": { "@jest-runner/electron": "^3.0.0", "@react-mock/state": "^0.1.8", "@svgr/webpack": "^5.4.0", "@testing-library/jest-dom": "^5.11.4", "@testing-library/react": "^11.0.4", "auto-changelog": "^2.2.1", "babel-jest": "^26.5.2", "dotenv": "^8.2.0", "electron": "^10.1.3", "electron-builder": "^22.8.1", "electron-serve": "^1.0.0", "eslint": "^7.11.0", "eslint-config-prettier": "^6.12.0", "eslint-plugin-react": "^7.21.4", "identity-obj-proxy": "^3.0.0", "jest": "^26.5.2", "next": "9.5.1", "nextron": "^5.15.2", "prettier": "^2.1.2", "react": "^16.13.1", "react-dom": "^16.13.1", "react-pose": "^4.0.10", "release-it": "^14.0.4" }, "browserslist": "electron >= 8.0", "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 } } }