oxen-electron-gui-wallet/package.json

93 lines
2.4 KiB
JSON
Raw Permalink Normal View History

2018-09-08 23:44:19 +02:00
{
2021-01-06 06:26:42 +01:00
"name": "oxen-electron-wallet",
2022-11-16 21:49:34 +01:00
"version": "1.8.1",
2021-01-06 06:26:42 +01:00
"description": "Modern GUI interface for Oxen Currency",
"productName": "Oxen Electron Wallet",
"repository": {
"type": "git",
"url": "https://github.com/loki-project/loki-electron-gui-wallet.git"
},
2021-01-06 06:26:42 +01:00
"cordovaId": "com.oxen.wallet",
"author": {
2021-01-06 06:26:42 +01:00
"name": "Oxen",
"email": "oxen@oxen.io"
},
2018-09-08 23:44:19 +02:00
"private": true,
"scripts": {
UI upgrade (#155) * followed upgrade instructions on quasar site * followed upgrade instructions on quasar site * debug messages now show * Fix template error mode undefined * building and working, UI broken, need to move to new quasar components * move collapsible to expansion-item * moving over components to quasar v1+ * items to labels * items and item side to quasar v1 * fix label typo * item main to item label * q-section to q-item-section * popover to menu * modals to v1 quasar * Remove debug lines, use new dialog methods * move static folder up a dir and rename to public. Change paths accordingly * Exit modal fixed with v1 quasar * UI fixes for v1 quasar * remove link styles * some field updates * Fix more fields and modals for v1 * more fields updated * more fields changed over * wallet settings modals * Fix password confirm dialog issue w/ refactor * begin generalising a copy component * Receive item looking better * Index view vixed for v1 quasar * fix export/import keys modal * tx styles and some others * bunch of small style changes * Fix date display on restore page * completed upgrade to v1 quasar (I think) * lns list fixed, stake buttons fixed * fix favourite checkbox with v1 quasar * Address book fixes * Fix the context menus * clean up * remove mixin from copyicon * Fix webpack * fix QR code view on address detail page * Fix welcome stepper and default to blink * Fix some style issues * radio buttons w/ white circles * clean up * sn style fixes, and other fixes * style fixes and unlock bug fixed * fix daemon typo * Fix some style things * fix button colour Co-authored-by: Kyle Zsembery <zsembery.kyle@gmail.com>
2020-08-31 07:26:06 +02:00
"dev": "quasar dev -m electron",
2020-09-16 05:00:46 +02:00
"build": "quasar build -m electron --publish=never",
2022-06-23 18:56:51 +02:00
"windows": "quasar build -m electron --publish=never -T win",
2020-03-03 04:16:23 +01:00
"lint": "eslint --fix .",
"format": "prettier --write \"**/*.+(js|jsx|json|yml|yaml|css|md|vue)\"",
"ready": "npm run lint && npm run format"
2018-09-08 23:44:19 +02:00
},
"dependencies": {
2019-08-21 03:28:15 +02:00
"axios": "^0.18.1",
"bunyan": "^1.8.14",
"electron-is-dev": "^1.0.1",
"electron-updater": "^4.2.0",
"electron-window-state": "^5.0.3",
"fs-extra": "^8.1.0",
2018-09-08 23:44:19 +02:00
"object-assign-deep": "^0.4.0",
"portscanner": "^2.2.0",
2019-02-07 08:27:41 +01:00
"promise-queue": "^2.2.5",
"qrcode.vue": "^1.6.1",
UI upgrade (#155) * followed upgrade instructions on quasar site * followed upgrade instructions on quasar site * debug messages now show * Fix template error mode undefined * building and working, UI broken, need to move to new quasar components * move collapsible to expansion-item * moving over components to quasar v1+ * items to labels * items and item side to quasar v1 * fix label typo * item main to item label * q-section to q-item-section * popover to menu * modals to v1 quasar * Remove debug lines, use new dialog methods * move static folder up a dir and rename to public. Change paths accordingly * Exit modal fixed with v1 quasar * UI fixes for v1 quasar * remove link styles * some field updates * Fix more fields and modals for v1 * more fields updated * more fields changed over * wallet settings modals * Fix password confirm dialog issue w/ refactor * begin generalising a copy component * Receive item looking better * Index view vixed for v1 quasar * fix export/import keys modal * tx styles and some others * bunch of small style changes * Fix date display on restore page * completed upgrade to v1 quasar (I think) * lns list fixed, stake buttons fixed * fix favourite checkbox with v1 quasar * Address book fixes * Fix the context menus * clean up * remove mixin from copyicon * Fix webpack * fix QR code view on address detail page * Fix welcome stepper and default to blink * Fix some style issues * radio buttons w/ white circles * clean up * sn style fixes, and other fixes * style fixes and unlock bug fixed * fix daemon typo * Fix some style things * fix button colour Co-authored-by: Kyle Zsembery <zsembery.kyle@gmail.com>
2020-08-31 07:26:06 +02:00
"quasar": "^1.13.1",
"request": "^2.88.0",
"request-promise": "^4.2.4",
2020-09-04 06:15:37 +02:00
"semver": "^7.3.2",
"upath": "^1.2.0",
"vue-i18n": "^8.9.0",
"vue-timeago": "^5.1.2",
2018-09-08 23:44:19 +02:00
"vuelidate": "^0.7.4"
},
"devDependencies": {
2020-09-10 06:13:17 +02:00
"@quasar/app": "^2.0.8",
"@quasar/extras": "^1.9.4",
2020-03-03 01:04:14 +01:00
"babel-eslint": "^10.1.0",
2018-09-08 23:44:19 +02:00
"devtron": "^1.4.0",
2019-10-15 06:15:46 +02:00
"dotenv": "^8.1.0",
"electron": "^4.1.1",
"electron-builder": "^23.0.3",
"electron-debug": "^2.1.0",
2018-09-08 23:44:19 +02:00
"electron-devtools-installer": "^2.2.4",
2019-10-15 06:15:46 +02:00
"electron-notarize": "^0.1.1",
2020-03-03 01:04:14 +01:00
"eslint": "^5.16.0",
2020-10-09 02:18:39 +02:00
"eslint-config-prettier": "^6.12.0",
2018-09-08 23:44:19 +02:00
"eslint-friendly-formatter": "^4.0.1",
2020-03-03 01:04:14 +01:00
"eslint-loader": "^2.2.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
2020-10-09 02:18:39 +02:00
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.0.1",
2020-03-03 01:04:14 +01:00
"eslint-plugin-vue": "^5.2.3",
2020-03-03 04:16:23 +01:00
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
2020-03-03 01:04:14 +01:00
"prettier": "^1.19.1",
"sass-loader": "^7.1.0",
"strip-ansi": "^3.0.1"
2018-09-08 23:44:19 +02:00
},
2020-03-03 04:16:23 +01:00
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.+(js|jsx|vue)": [
"eslint --fix",
"prettier --write"
],
"*.+(json|yml|yaml|css|md)": "prettier --write"
},
2018-09-08 23:44:19 +02:00
"engines": {
"node": ">= 8.9.0",
"npm": ">= 5.6.0",
"yarn": ">= 1.6.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 10"
]
}