1
0
mirror of https://github.com/kremalicious/blowfish.git synced 2024-06-30 05:32:02 +02:00
blowfish/package.json

121 lines
3.5 KiB
JSON
Raw Normal View History

2019-05-05 13:34:21 +02:00
{
2019-05-25 03:25:00 +02:00
"name": "@kremalicious/blowfish",
2019-05-19 15:24:25 +02:00
"productName": "Blowfish",
2019-06-11 23:18:55 +02:00
"version": "1.1.7",
2019-05-06 01:04:17 +02:00
"description": "🐡 Simple Electron-based desktop app to retrieve and display your total Ocean Token balances.",
2019-05-25 03:16:53 +02:00
"main": "./src/main/index.js",
2019-05-05 13:34:21 +02:00
"scripts": {
2019-06-05 01:29:11 +02:00
"test": "eslint --ignore-path .gitignore ./src/**/*.{js,jsx} && stylelint --ignore-path .gitignore ./src/**/*.{css,scss}",
2019-05-05 13:34:21 +02:00
"start": "webpack-dev-server --hot --host 0.0.0.0 --config=./webpack.dev.config.js",
2019-06-05 00:03:19 +02:00
"build": "cross-env NODE_ENV=production webpack --config webpack.common.config.js",
2019-05-17 00:19:00 +02:00
"package": "electron-builder build -mwl && open ./dist",
2019-05-28 02:43:53 +02:00
"dist": "rm -rf {dist,build}/ && npm run build && npm run package",
"release": "release-it --non-interactive",
"changelog": "auto-changelog -p"
2019-05-05 13:34:21 +02:00
},
2019-05-19 15:24:25 +02:00
"repository": "https://github.com/kremalicious/blowfish.git",
"homepage": "https://github.com/kremalicious/blowfish",
2019-05-17 00:19:00 +02:00
"author": {
"name": "Matthias Kretschmann",
"email": "m@kretschmann.io",
"url": "https://matthiaskretschmann.com"
},
2019-05-05 13:34:21 +02:00
"license": "MIT",
"dependencies": {
2019-06-03 23:15:04 +02:00
"@coingecko/cryptoformat": "^0.3.2",
"ethereum-address": "0.0.4",
2019-06-05 01:29:11 +02:00
"ethereum-blockies": "github:MyEtherWallet/blockies",
"ms": "^2.1.2"
2019-05-05 13:34:21 +02:00
},
"devDependencies": {
2019-05-23 00:25:20 +02:00
"@babel/core": "^7.4.5",
2019-05-05 13:34:21 +02:00
"@babel/plugin-proposal-class-properties": "^7.4.4",
2019-05-23 00:25:20 +02:00
"@babel/preset-env": "^7.4.5",
2019-05-05 13:34:21 +02:00
"@babel/preset-react": "^7.0.0",
2019-05-23 00:25:20 +02:00
"@babel/runtime": "^7.4.5",
2019-05-25 03:16:53 +02:00
"@reach/router": "^1.2.1",
2019-06-03 23:15:04 +02:00
"@svgr/webpack": "^4.3.0",
"auto-changelog": "^1.13.0",
2019-05-05 13:34:21 +02:00
"babel-eslint": "^10.0.1",
2019-05-19 14:02:42 +02:00
"babel-loader": "^8.0.6",
2019-05-17 00:19:00 +02:00
"copy-webpack-plugin": "^5.0.3",
2019-06-05 00:03:19 +02:00
"cross-env": "^5.2.0",
"css-loader": "^3.0.0",
"electron": "^5.0.3",
2019-06-04 22:08:57 +02:00
"electron-builder": "^20.43.0",
2019-05-05 13:34:21 +02:00
"electron-devtools-installer": "^2.2.4",
"electron-store": "^3.3.0",
2019-05-05 13:34:21 +02:00
"eslint": "^5.16.0",
"eslint-config-prettier": "^5.0.0",
2019-05-05 13:34:21 +02:00
"eslint-plugin-react": "^7.13.0",
"file-loader": "^4.0.0",
2019-05-05 13:34:21 +02:00
"html-webpack-plugin": "^3.2.0",
2019-06-05 00:03:19 +02:00
"mini-css-extract-plugin": "^0.7.0",
"node-sass": "^4.12.0",
"prettier": "^1.18.2",
2019-05-05 13:34:21 +02:00
"prettier-stylelint": "^0.4.2",
2019-05-25 03:16:53 +02:00
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-pose": "^4.0.8",
"release-it": "^12.3.0",
2019-06-05 00:03:19 +02:00
"sass-loader": "^7.1.0",
2019-05-05 13:34:21 +02:00
"style-loader": "^0.23.1",
"stylelint": "^10.1.0",
2019-06-05 00:03:19 +02:00
"stylelint-config-css-modules": "^1.4.0",
2019-05-05 13:34:21 +02:00
"stylelint-config-standard": "^18.3.0",
2019-06-04 22:08:57 +02:00
"webpack": "^4.33.0",
"webpack-cli": "^3.3.4",
"webpack-dev-server": "^3.7.1"
2019-05-17 00:19:00 +02:00
},
"browserslist": "electron >= 5.0",
"build": {
2019-05-19 15:24:25 +02:00
"appId": "com.kremalicious.blowfish",
2019-05-17 00:19:00 +02:00
"files": [
"./build/**/*",
2019-05-25 03:16:53 +02:00
"./src/main/**/*",
2019-05-17 00:19:00 +02:00
"./src/*.js",
"package.json"
],
"mac": {
2019-06-05 01:29:11 +02:00
"category": "public.app-category.finance",
"identity": null
2019-05-17 00:19:00 +02:00
},
"linux": {
"target": [
"deb",
"snap",
"AppImage"
],
2019-05-28 02:22:50 +02:00
"category": "Office",
"executableName": "Blowfish",
2019-05-28 02:22:50 +02:00
"artifactName": "${productName}-${version}.${ext}"
2019-05-17 00:19:00 +02:00
}
2019-05-27 00:46:13 +02:00
},
"release-it": {
"hooks": {
"after:init": "npm test",
"after:bump": "npm run changelog",
"before:release": "npm run dist"
2019-05-27 00:46:13 +02:00
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"assets": [
2019-05-28 02:43:53 +02:00
"dist/*.exe",
"dist/*.zip",
"dist/*.dmg",
"dist/*.AppImage",
"dist/*.deb",
2019-06-05 00:35:07 +02:00
"dist/*.snap",
"dist/latest*.yml",
"dist/*.blockmap"
2019-05-27 00:46:13 +02:00
]
},
"npm": {
"publish": false
}
2019-05-05 13:34:21 +02:00
}
}