2017-12-13 11:01:37 +00:00
|
|
|
{
|
2018-08-30 18:10:36 +00:00
|
|
|
"name": "trezor-wallet",
|
2019-02-26 15:19:23 +00:00
|
|
|
"version": "1.1.0-beta",
|
2017-12-13 11:01:37 +00:00
|
|
|
"author": "TREZOR <info@trezor.io>",
|
|
|
|
"description": "",
|
2018-04-16 21:19:50 +00:00
|
|
|
"bin": {
|
|
|
|
"flow": "./node_modules/flow-bin"
|
|
|
|
},
|
2018-10-19 11:45:46 +00:00
|
|
|
"license": "SEE LICENSE IN LICENSE.md",
|
2017-12-13 11:01:37 +00:00
|
|
|
"scripts": {
|
2019-01-05 00:01:18 +00:00
|
|
|
"dev": "yarn && npx webpack-dev-server --config webpack/dev.babel.js",
|
|
|
|
"dev:local": "yarn && npx webpack-dev-server --config webpack/local.babel.js",
|
2018-10-15 11:24:41 +00:00
|
|
|
"build": "rimraf build && run-s build:*",
|
2018-10-24 21:01:23 +00:00
|
|
|
"build:stable": "rimraf build/stable && npx webpack --config webpack/production.babel.js --output-path build/stable --progress --bail",
|
2018-10-15 11:24:41 +00:00
|
|
|
"build:beta": "rimraf build/beta && cross-env BUILD=beta npx webpack --config webpack/production.babel.js --output-path build/beta --progress --bail",
|
|
|
|
"build:dev": "rimraf build.dev && cross-env BUILD=development npx webpack --config webpack/production.babel.js --output-path build/dev --progress --bail",
|
2019-02-18 19:36:27 +00:00
|
|
|
"translations:extract": "rimraf translations/extractedMessages && cross-env NODE_ENV=translations babel src",
|
2019-02-28 13:59:33 +00:00
|
|
|
"translations:upload": "yarn translations:extract && yarn ttm merge-msgs && yarn ttm build-csv && yarn ttm upload",
|
|
|
|
"translations:download": "yarn ttm build-translations && sleep 1 && yarn ttm export-translations",
|
2018-08-27 15:15:22 +00:00
|
|
|
"flow": "flow check src",
|
2018-08-14 14:06:34 +00:00
|
|
|
"lint": "run-s lint:*",
|
2018-09-04 15:10:52 +00:00
|
|
|
"lint:js": "npx eslint ./src ./webpack",
|
|
|
|
"lint:css": "npx stylelint './src/**/*.js'",
|
2019-03-04 12:33:02 +00:00
|
|
|
"lint:prettier": "npx pretty-quick",
|
|
|
|
"lint-fix": "npx eslint ./src ./webpack --fix",
|
2019-03-04 12:38:05 +00:00
|
|
|
"prettier:check": "npx eslint --print-config ./src | eslint-config-prettier-check",
|
2018-08-25 10:59:12 +00:00
|
|
|
"test": "run-s test:*",
|
2018-09-04 15:10:52 +00:00
|
|
|
"test:unit": "npx jest",
|
2018-09-19 16:08:22 +00:00
|
|
|
"test-unit:watch": "npx jest -o --watch",
|
2019-02-05 13:26:40 +00:00
|
|
|
"test-integration:dev": "npx cypress open -c baseUrl=http://localhost:8081/#/",
|
|
|
|
"test-integration:test": "npx cypress run",
|
|
|
|
"test-integration:gitlab": "npx cypress run -c baseUrl=https://localhost:8080/#/ --browser chromium",
|
2018-10-24 15:58:10 +00:00
|
|
|
"server:beta": "node ./server/index.js --buildType=beta",
|
2018-10-24 21:01:23 +00:00
|
|
|
"server:stable": "node ./server/index.js --buildType=stable"
|
2017-12-13 11:01:37 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2019-02-05 13:26:40 +00:00
|
|
|
"@babel/polyfill": "^7.2.5",
|
2019-02-18 10:45:40 +00:00
|
|
|
"bignumber.js": "8.0.2",
|
2018-02-20 09:30:36 +00:00
|
|
|
"color-hash": "^1.0.3",
|
2018-10-24 15:58:10 +00:00
|
|
|
"commander": "^2.19.0",
|
2019-02-20 13:28:11 +00:00
|
|
|
"connected-react-router": "6.0.0",
|
2019-02-05 16:23:47 +00:00
|
|
|
"copy-webpack-plugin": "^4.6.0",
|
2018-09-19 14:55:09 +00:00
|
|
|
"cross-env": "^5.2.0",
|
2019-02-05 16:23:47 +00:00
|
|
|
"date-fns": "^1.30.1",
|
|
|
|
"ethereumjs-tx": "^1.3.7",
|
2018-02-20 09:30:36 +00:00
|
|
|
"ethereumjs-units": "^0.2.0",
|
2019-02-18 10:45:40 +00:00
|
|
|
"ethereumjs-util": "^6.0.0",
|
2019-02-05 16:23:47 +00:00
|
|
|
"express": "^4.16.4",
|
2018-09-21 14:54:02 +00:00
|
|
|
"git-revision-webpack-plugin": "^3.0.3",
|
2019-02-06 16:07:54 +00:00
|
|
|
"hdkey": "^1.1.0",
|
2018-10-09 13:20:57 +00:00
|
|
|
"history": "^4.7.2",
|
2018-07-30 10:47:37 +00:00
|
|
|
"html-webpack-plugin": "^3.2.0",
|
2019-02-06 16:07:54 +00:00
|
|
|
"jest-fetch-mock": "^2.1.0",
|
2018-10-02 13:43:03 +00:00
|
|
|
"morgan": "^1.9.1",
|
2019-02-05 16:23:47 +00:00
|
|
|
"npm-run-all": "^4.1.5",
|
2018-07-30 14:30:25 +00:00
|
|
|
"prop-types": "^15.6.2",
|
2019-02-05 16:23:47 +00:00
|
|
|
"raf": "^3.4.1",
|
|
|
|
"raven-js": "^3.27.0",
|
|
|
|
"rc-tooltip": "^3.7.3",
|
2019-02-18 10:45:40 +00:00
|
|
|
"react": "^16.8.1",
|
|
|
|
"react-dom": "^16.8.1",
|
2019-02-05 16:23:47 +00:00
|
|
|
"react-hot-loader": "^4.6.5",
|
2019-02-12 17:37:09 +00:00
|
|
|
"react-intl": "^2.8.0",
|
2018-10-30 16:00:42 +00:00
|
|
|
"react-json-view": "^1.19.1",
|
2019-01-17 10:34:24 +00:00
|
|
|
"react-qr-reader": "^2.1.2",
|
2017-12-13 11:01:37 +00:00
|
|
|
"react-qr-svg": "^2.1.0",
|
2018-12-18 13:33:01 +00:00
|
|
|
"react-redux": "^6.0.0",
|
|
|
|
"react-router": "^4.3.1",
|
2019-02-05 16:23:47 +00:00
|
|
|
"react-router-dom": "^4.3.1",
|
2018-02-20 09:30:36 +00:00
|
|
|
"react-scale-text": "^1.2.2",
|
2019-02-05 16:23:47 +00:00
|
|
|
"react-select": "^2.3.0",
|
|
|
|
"react-textarea-autosize": "^7.1.0",
|
|
|
|
"react-transition-group": "^2.5.3",
|
2018-08-22 12:31:16 +00:00
|
|
|
"redbox-react": "^1.6.0",
|
2019-02-05 16:23:47 +00:00
|
|
|
"redux": "4.0.1",
|
2017-12-13 11:01:37 +00:00
|
|
|
"redux-logger": "^3.0.6",
|
2018-03-08 16:10:53 +00:00
|
|
|
"redux-raven-middleware": "^1.2.0",
|
2019-02-05 16:23:47 +00:00
|
|
|
"redux-thunk": "^2.3.0",
|
2019-02-05 13:26:40 +00:00
|
|
|
"request": "^2.88.0",
|
2019-02-05 16:23:47 +00:00
|
|
|
"rimraf": "^2.6.3",
|
|
|
|
"styled-components": "^4.1.3",
|
|
|
|
"styled-normalize": "^8.0.6",
|
2019-02-05 13:26:40 +00:00
|
|
|
"trezor-bridge-communicator": "1.0.2",
|
2019-02-26 11:36:19 +00:00
|
|
|
"trezor-connect": "7.0.0-beta.3",
|
2018-12-20 18:30:00 +00:00
|
|
|
"wallet-address-validator": "^0.2.4",
|
2019-02-28 09:01:37 +00:00
|
|
|
"web3": "1.0.0-beta.35",
|
2019-02-18 10:45:40 +00:00
|
|
|
"webpack": "^4.29.3",
|
2019-02-05 14:06:59 +00:00
|
|
|
"webpack-build-notifier": "^0.1.30",
|
|
|
|
"webpack-bundle-analyzer": "^3.0.3",
|
2019-02-06 16:07:54 +00:00
|
|
|
"whatwg-fetch": "^3.0.0",
|
2018-07-30 11:44:39 +00:00
|
|
|
"yarn-run-all": "^3.1.1"
|
2017-12-13 11:01:37 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-02-02 13:42:12 +00:00
|
|
|
"@babel/cli": "^7.2.3",
|
|
|
|
"@babel/core": "^7.2.2",
|
|
|
|
"@babel/plugin-proposal-class-properties": "^7.3.0",
|
2019-02-05 16:23:47 +00:00
|
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
|
2019-02-02 13:42:12 +00:00
|
|
|
"@babel/plugin-transform-flow-strip-types": "^7.2.3",
|
|
|
|
"@babel/plugin-transform-runtime": "^7.2.0",
|
|
|
|
"@babel/preset-env": "^7.3.1",
|
2019-02-01 17:09:16 +00:00
|
|
|
"@babel/preset-flow": "^7.0.0",
|
|
|
|
"@babel/preset-react": "^7.0.0",
|
|
|
|
"@babel/register": "^7.0.0",
|
2019-02-05 14:43:08 +00:00
|
|
|
"babel-eslint": "^10.0.1",
|
2019-02-05 16:23:47 +00:00
|
|
|
"babel-jest": "^24.1.0",
|
2019-02-02 13:42:12 +00:00
|
|
|
"babel-loader": "^8.0.5",
|
2019-02-01 17:09:16 +00:00
|
|
|
"babel-plugin-module-resolver": "^3.1.3",
|
2019-02-12 17:37:09 +00:00
|
|
|
"babel-plugin-react-intl": "^3.0.1",
|
2019-02-01 17:09:16 +00:00
|
|
|
"babel-plugin-styled-components": "^1.10.0",
|
2019-02-05 13:26:40 +00:00
|
|
|
"cypress": "^3.1.5",
|
|
|
|
"cypress-image-snapshot": "^3.0.0",
|
2019-02-05 14:43:08 +00:00
|
|
|
"eslint": "^5.13.0",
|
|
|
|
"eslint-config-airbnb": "^17.1.0",
|
2019-03-04 11:15:22 +00:00
|
|
|
"eslint-config-prettier": "^4.0.0",
|
2019-02-01 17:09:16 +00:00
|
|
|
"eslint-import-resolver-babel-module": "^5.0.1",
|
2019-02-05 14:43:08 +00:00
|
|
|
"eslint-loader": "^2.1.2",
|
2019-02-05 13:26:40 +00:00
|
|
|
"eslint-plugin-chai-friendly": "^0.4.1",
|
|
|
|
"eslint-plugin-cypress": "^2.2.0",
|
2019-02-05 14:52:46 +00:00
|
|
|
"eslint-plugin-flowtype": "^3.2.1",
|
2019-02-05 14:43:08 +00:00
|
|
|
"eslint-plugin-import": "^2.16.0",
|
|
|
|
"eslint-plugin-jest": "^22.2.2",
|
|
|
|
"eslint-plugin-jsx-a11y": "^6.2.1",
|
2019-03-04 11:15:22 +00:00
|
|
|
"eslint-plugin-prettier": "^3.0.1",
|
2019-02-05 14:43:08 +00:00
|
|
|
"eslint-plugin-react": "^7.12.4",
|
2019-02-05 14:06:59 +00:00
|
|
|
"file-loader": "3.0.1",
|
2018-12-20 16:40:56 +00:00
|
|
|
"flow-bin": "0.75.0",
|
2019-02-05 16:23:47 +00:00
|
|
|
"jest": "^24.1.0",
|
2019-03-04 11:15:22 +00:00
|
|
|
"prettier": "^1.16.4",
|
|
|
|
"prettier-eslint": "^8.8.2",
|
|
|
|
"pretty-quick": "^1.10.0",
|
|
|
|
"prettylint": "^1.0.0",
|
2019-02-05 14:06:59 +00:00
|
|
|
"stylelint": "^9.10.1",
|
2018-08-10 13:33:23 +00:00
|
|
|
"stylelint-config-standard": "^18.2.0",
|
|
|
|
"stylelint-config-styled-components": "^0.1.1",
|
2019-02-05 14:06:59 +00:00
|
|
|
"stylelint-custom-processor-loader": "^0.6.0",
|
2019-02-05 16:23:47 +00:00
|
|
|
"stylelint-processor-styled-components": "^1.5.2",
|
2018-09-05 12:54:24 +00:00
|
|
|
"stylelint-webpack-plugin": "^0.10.5",
|
2019-02-22 12:05:18 +00:00
|
|
|
"trezor-translations-manager": "^1.0.4",
|
2019-02-05 14:06:59 +00:00
|
|
|
"webpack-cli": "^3.2.3",
|
|
|
|
"webpack-dev-server": "^3.1.14",
|
2019-02-06 16:07:54 +00:00
|
|
|
"yargs": "12.0.5"
|
2018-10-02 13:43:03 +00:00
|
|
|
},
|
|
|
|
"optionalDependencies": {
|
2019-02-05 16:23:47 +00:00
|
|
|
"fsevents": "1.2.7"
|
2017-12-13 11:01:37 +00:00
|
|
|
}
|
2019-03-04 12:33:02 +00:00
|
|
|
}
|