kremalicious/blowfish

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "@kremalicious/blowfish",
  "productName": "Blowfish",
  "version": "1.6.0",
  "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",
    "build:all": "nextron build --all",
    "postinstall": "electron-builder install-app-deps",
    "test": "npm run lint && npm run jest",
    "test:watch": "npm run jest -- --watch",
    "jest": "cross-env NODE_ENV=test jest -c tests/jest.config.js",
    "lint": "eslint --ignore-path .gitignore --ext .js --ext .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.10",
    "axios": "^0.24.0",
    "ethereum-address": "^0.0.4",
    "ethereum-blockies": "github:MyEtherWallet/blockies",
    "ethjs": "^0.4.0",
    "ms": "^2.1.3",
    "next": "^10.0.6",
    "nextron": "^6.0.3",
    "react": "^17.0.2",
    "react-dom": "^17.0.2",
    "react-pose": "^4.0.10",
    "shortid": "^2.2.16",
    "swr": "^0.4.1"
  },
  "devDependencies": {
    "@babel/eslint-parser": "^7.13.8",
    "@jest-runner/electron": "^3.0.1",
    "@react-mock/state": "^0.1.8",
    "@svgr/webpack": "^5.5.0",
    "@testing-library/jest-dom": "^5.11.9",
    "@testing-library/react": "^12.1.2",
    "auto-changelog": "^2.2.1",
    "babel-jest": "^26.6.3",
    "cross-env": "^7.0.3",
    "dotenv": "^8.2.0",
    "electron": "10.1.3",
    "electron-builder": "^22.9.1",
    "electron-serve": "^1.1.0",
    "electron-store": "^7.0.0",
    "eslint": "^7.32.0",
    "eslint-config-prettier": "^7.2.0",
    "eslint-plugin-react": "^7.26.1",
    "identity-obj-proxy": "^3.0.0",
    "jest": "^26.6.3",
    "prettier": "^2.2.1",
    "release-it": "^14.2.2"
  },
  "browserslist": [
    "electron >= 10.0",
    ">0.3%",
    "not ie 11",
    "not dead",
    "not op_mini all"
  ],
  "release-it": {
    "hooks": {
      "after:init": "npm test",
      "after:bump": "npm run changelog",
      "before:release": "npm run build:all"
    },
    "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
    }
  }
}