blowfish/package.json

124 lines
3.7 KiB
JSON

{
"name": "@kremalicious/blowfish",
"productName": "Blowfish",
"version": "1.3.1",
"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": "rsync src/renderer/images/icon* build/",
"build:react": "next build src/renderer && next export src/renderer && npm run copy",
"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}' && npm run format:css",
"format:css": "prettier-stylelint --write --ignore-path .gitignore --quiet 'src/**/*.{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.3",
"electron-is-dev": "^1.1.0",
"electron-next": "^3.1.5",
"electron-store": "^5.1.0",
"ethereum-address": "^0.0.4",
"ethereum-blockies": "github:MyEtherWallet/blockies",
"ms": "^2.1.2",
"shortid": "^2.2.15"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@jest-runner/electron": "^2.0.3",
"@react-mock/state": "^0.1.8",
"@svgr/webpack": "^5.0.0",
"@testing-library/jest-dom": "^5.0.0",
"@testing-library/react": "^9.4.0",
"auto-changelog": "^1.16.2",
"babel-eslint": "^10.0.3",
"babel-jest": "^25.1.0",
"electron": "^8.0.0",
"electron-builder": "^22.3.2",
"electron-devtools-installer": "^2.2.4",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-react": "^7.18.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.1.0",
"next": "^9.2.1",
"prettier": "^1.19.1",
"prettier-stylelint": "^0.4.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-pose": "^4.0.10",
"release-it": "^12.4.3",
"stylelint": "^13.1.0",
"stylelint-config-css-modules": "^2.1.0",
"stylelint-config-standard": "^19.0.0"
},
"browserslist": "electron >= 8.0",
"build": {
"asar": true,
"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
}
}
}