mirror of
https://github.com/kremalicious/blowfish.git
synced 2024-11-14 17:15:12 +01:00
129 lines
3.9 KiB
JSON
129 lines
3.9 KiB
JSON
{
|
|
"name": "@kremalicious/blowfish",
|
|
"productName": "Blowfish",
|
|
"version": "1.4.2",
|
|
"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}' && 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.4",
|
|
"@oceanprotocol/keeper-contracts": "^0.13.2",
|
|
"axios": "^0.19.2",
|
|
"electron-is-dev": "^1.1.0",
|
|
"electron-next": "^3.1.5",
|
|
"electron-store": "^5.1.1",
|
|
"ethereum-address": "^0.0.4",
|
|
"ethereum-blockies": "github:MyEtherWallet/blockies",
|
|
"ethjs": "^0.4.0",
|
|
"ms": "^2.1.2",
|
|
"shortid": "^2.2.15"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.8.6",
|
|
"@babel/preset-env": "^7.8.6",
|
|
"@jest-runner/electron": "^2.0.3",
|
|
"@react-mock/state": "^0.1.8",
|
|
"@svgr/webpack": "^5.2.0",
|
|
"@testing-library/jest-dom": "^5.1.1",
|
|
"@testing-library/react": "^9.4.1",
|
|
"auto-changelog": "^1.16.2",
|
|
"babel-eslint": "^10.1.0",
|
|
"babel-jest": "^25.1.0",
|
|
"copy": "^0.3.2",
|
|
"cross-env": "^7.0.1",
|
|
"dotenv": "^8.2.0",
|
|
"electron": "^8.0.3",
|
|
"electron-builder": "^22.3.6",
|
|
"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.2",
|
|
"prettier": "^1.19.1",
|
|
"prettier-stylelint": "^0.4.2",
|
|
"react": "^16.13.0",
|
|
"react-dom": "^16.13.0",
|
|
"react-pose": "^4.0.10",
|
|
"release-it": "^13.0.0",
|
|
"stylelint": "^13.2.0",
|
|
"stylelint-config-css-modules": "^2.2.0",
|
|
"stylelint-config-standard": "^20.0.0"
|
|
},
|
|
"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
|
|
}
|
|
}
|
|
}
|