blowfish/package.json

87 lines
2.6 KiB
JSON
Raw Normal View History

2019-05-05 13:34:21 +02:00
{
"name": "ocean-balance",
"productName": "Ocean",
"version": "1.0.0",
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-05 13:34:21 +02:00
"main": "./src/main.js",
"scripts": {
2019-05-06 01:04:17 +02:00
"test": "eslint ./src/**/*.{js,jsx} && stylelint ./src/**/*.css",
2019-05-05 13:34:21 +02:00
"start": "webpack-dev-server --hot --host 0.0.0.0 --config=./webpack.dev.config.js",
2019-05-11 22:55:51 +02:00
"build": "webpack --mode production --config webpack.common.config.js",
2019-05-17 00:19:00 +02:00
"package": "electron-builder build -mwl && open ./dist",
2019-05-11 22:55:51 +02:00
"dist": "npm run build && npm run package"
2019-05-05 13:34:21 +02:00
},
"repository": "https://github.com/kremalicious/ocean-balance.git",
2019-05-16 22:25:19 +02:00
"homepage": "https://github.com/kremalicious/ocean-balance",
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": {
"@coingecko/cryptoformat": "^0.3.1",
2019-05-08 01:02:02 +02:00
"@reach/router": "^1.2.1",
"ethereum-address": "0.0.4",
2019-05-05 13:34:21 +02:00
"ms": "^2.1.1",
"react": "^16.8.6",
2019-05-08 21:41:24 +02:00
"react-blockies": "^1.4.1",
2019-05-10 22:22:33 +02:00
"react-dom": "^16.8.6",
2019-05-13 22:54:40 +02:00
"react-pose": "^4.0.8",
"react-touchbar-electron": "0.0.1"
2019-05-05 13:34:21 +02:00
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.4.4",
2019-05-09 00:58:05 +02:00
"@svgr/webpack": "^4.2.0",
2019-05-05 13:34:21 +02:00
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
2019-05-17 00:19:00 +02:00
"copy-webpack-plugin": "^5.0.3",
2019-05-05 13:34:21 +02:00
"css-loader": "^2.1.1",
2019-05-06 01:04:17 +02:00
"electron": "^5.0.1",
2019-05-17 00:19:00 +02:00
"electron-builder": "^20.40.2",
2019-05-05 13:34:21 +02:00
"electron-devtools-installer": "^2.2.4",
2019-05-08 01:02:02 +02:00
"electron-store": "^3.2.0",
2019-05-05 13:34:21 +02:00
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-react": "^7.13.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
2019-05-11 22:55:51 +02:00
"npm-run-all": "^4.1.5",
2019-05-05 13:34:21 +02:00
"prettier": "^1.17.0",
"prettier-stylelint": "^0.4.2",
"style-loader": "^0.23.1",
"stylelint": "^10.0.1",
"stylelint-config-standard": "^18.3.0",
2019-05-11 21:56:33 +02:00
"webpack": "^4.31.0",
2019-05-06 01:04:17 +02:00
"webpack-cli": "^3.3.2",
2019-05-05 13:34:21 +02:00
"webpack-dev-server": "^3.3.1"
2019-05-17 00:19:00 +02:00
},
"browserslist": "electron >= 5.0",
"build": {
"productName": "Ocean Balance",
"appId": "com.kremalicious.ocean-balance",
"files": [
"./build/**/*",
"./src/*.js",
"package.json"
],
"mac": {
"category": "public.app-category.finance"
},
"linux": {
"target": [
"deb",
"rpm",
"snap",
"AppImage"
],
"category": "Office"
}
2019-05-05 13:34:21 +02:00
}
}