1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-27 18:58:08 +00:00
trezor-wallet/package.json

133 lines
5.3 KiB
JSON
Raw Normal View History

2017-12-13 11:01:37 +00:00
{
2018-08-30 18:10:36 +00:00
"name": "trezor-wallet",
2017-12-13 11:01:37 +00:00
"version": "1.0.0",
"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": {
"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",
2018-08-27 15:15:22 +00:00
"flow": "flow check src",
2018-08-14 14:06:34 +00:00
"lint": "run-s lint:*",
"lint:js": "npx eslint ./src ./webpack",
"lint:css": "npx stylelint './src/**/*.js'",
2018-08-25 10:59:12 +00:00
"test": "run-s test:*",
"test:unit": "npx jest",
2018-09-19 16:08:22 +00:00
"test-unit:watch": "npx jest -o --watch",
Integration tests (#311) * Add base test env * Add eslint rules for cypress * Add configs and scripts in package json * Added docker file for bridge and emualator * Bridge install progress * Bridge install next step * Add task for integration tests * Fixed deps * Added baseUrl * Added baseUrl fix * Added npx * Added caching for cypress bin * Added path to binary * Install cypress * Finalized dockerfile * Fixed bridge lib path * Fixed path for binary * Adjust script again * Run all the things properly * Try to run the tests * First POC test * First POC test in gitlab * Fixed flow * Fixed gitlab test url, try docker service * export artifacts * Test only integration tests in CI * Test only integration tests in CI 2 * Test only integration tests in CI 3 * Added tests for initialize device * Try to add docker in only one step * Turn on other integration steps * Correct node version * Ignore cache in flow * Run bridge and emulator in debug link mode * Fix param * Try to run new config in CI * init device in docker * Remove docker image after run * Remove amp * Fix path * Artifacts on fail * Artifacts on fail with volume * Artifacts on fail with volume 2 * Install mkdir * Install mkdir again * test * test 2 * test 3 * test 4 * test 5 * test 6 * test 7 * test 8 * test 9 * test 10 * test 11 * test 12 * test 13 * test 14 * test 15 * test 16 * test 17 * Revert "test 17" This reverts commit f3f6c0d6906cdc470aa11ae728b4b61a6b71a732. * test 18 * test 19 * test 20 * test 21 try chrome * test 22 * test 23 * test 24 * test 25 * test 25 try to install chrome again * test 25 try to install chrome again * Added missing deps * Added debug * Install chromium * Install chromium 2 * turn on chromium * turn off debug * turn on debug * fix folder * turn off debug * Fix init device * Add header dashboard test * Bring things back * clean * clean fix * Build image in CI * Added stage step * Added docker image * Added service * Added tests to docker image * Refactor a bit * Correct registry image * Build wallet again * Add test for dashbaord content * new node version, more tests * Remove unused code * typo * Correct snapshots, moved deps to dev, beta disclaimer prop
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": {
Integration tests (#311) * Add base test env * Add eslint rules for cypress * Add configs and scripts in package json * Added docker file for bridge and emualator * Bridge install progress * Bridge install next step * Add task for integration tests * Fixed deps * Added baseUrl * Added baseUrl fix * Added npx * Added caching for cypress bin * Added path to binary * Install cypress * Finalized dockerfile * Fixed bridge lib path * Fixed path for binary * Adjust script again * Run all the things properly * Try to run the tests * First POC test * First POC test in gitlab * Fixed flow * Fixed gitlab test url, try docker service * export artifacts * Test only integration tests in CI * Test only integration tests in CI 2 * Test only integration tests in CI 3 * Added tests for initialize device * Try to add docker in only one step * Turn on other integration steps * Correct node version * Ignore cache in flow * Run bridge and emulator in debug link mode * Fix param * Try to run new config in CI * init device in docker * Remove docker image after run * Remove amp * Fix path * Artifacts on fail * Artifacts on fail with volume * Artifacts on fail with volume 2 * Install mkdir * Install mkdir again * test * test 2 * test 3 * test 4 * test 5 * test 6 * test 7 * test 8 * test 9 * test 10 * test 11 * test 12 * test 13 * test 14 * test 15 * test 16 * test 17 * Revert "test 17" This reverts commit f3f6c0d6906cdc470aa11ae728b4b61a6b71a732. * test 18 * test 19 * test 20 * test 21 try chrome * test 22 * test 23 * test 24 * test 25 * test 25 try to install chrome again * test 25 try to install chrome again * Added missing deps * Added debug * Install chromium * Install chromium 2 * turn on chromium * turn off debug * turn on debug * fix folder * turn off debug * Fix init device * Add header dashboard test * Bring things back * clean * clean fix * Build image in CI * Added stage step * Added docker image * Added service * Added tests to docker image * Refactor a bit * Correct registry image * Build wallet again * Add test for dashbaord content * new node version, more tests * Remove unused code * typo * Correct snapshots, moved deps to dev, beta disclaimer prop
2019-02-05 13:26:40 +00:00
"@babel/polyfill": "^7.2.5",
2018-07-30 12:10:57 +00:00
"babel": "^6.23.0",
"babel-core": "^6.26.3",
2018-09-05 13:52:03 +00:00
"bignumber.js": "2.4.0",
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",
"connected-react-router": "^6.0.0",
2018-07-30 10:47:37 +00:00
"copy-webpack-plugin": "^4.5.2",
"cross-env": "^5.2.0",
2018-08-10 15:18:22 +00:00
"date-fns": "^1.29.0",
2017-12-13 11:01:37 +00:00
"ethereumjs-tx": "^1.3.3",
2018-02-20 09:30:36 +00:00
"ethereumjs-units": "^0.2.0",
2018-03-08 16:10:53 +00:00
"ethereumjs-util": "^5.1.4",
2018-10-02 13:43:03 +00:00
"express": "^4.16.3",
"flow-webpack-plugin": "^1.2.0",
2019-02-03 16:08:27 +00:00
"friendly-errors-webpack-plugin": "^1.7.0",
2018-09-21 14:54:02 +00:00
"git-revision-webpack-plugin": "^3.0.3",
2018-03-08 16:10:53 +00:00
"hdkey": "^0.8.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",
"jest-fetch-mock": "^1.6.5",
2018-10-02 13:43:03 +00:00
"morgan": "^1.9.1",
2018-08-14 11:43:45 +00:00
"npm-run-all": "^4.1.3",
2018-07-30 14:30:25 +00:00
"prop-types": "^15.6.2",
2018-02-20 09:30:36 +00:00
"raf": "^3.4.0",
2018-03-08 16:10:53 +00:00
"raven-js": "^3.22.3",
2018-02-20 09:30:36 +00:00
"rc-tooltip": "^3.7.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
2018-12-18 09:34:00 +00:00
"react-hot-loader": "^4.6.2",
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",
"react-redux": "^6.0.0",
"react-router": "^4.3.1",
2017-12-13 11:01:37 +00:00
"react-router-dom": "^4.2.2",
2018-02-20 09:30:36 +00:00
"react-scale-text": "^1.2.2",
2019-01-06 20:22:08 +00:00
"react-select": "^2.2.0",
2018-10-16 10:49:05 +00:00
"react-textarea-autosize": "^7.0.4",
"react-transition-group": "^2.4.0",
2018-08-22 12:31:16 +00:00
"redbox-react": "^1.6.0",
2018-05-17 20:08:34 +00:00
"redux": "4.0.0",
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",
2017-12-13 11:01:37 +00:00
"redux-thunk": "^2.2.0",
Integration tests (#311) * Add base test env * Add eslint rules for cypress * Add configs and scripts in package json * Added docker file for bridge and emualator * Bridge install progress * Bridge install next step * Add task for integration tests * Fixed deps * Added baseUrl * Added baseUrl fix * Added npx * Added caching for cypress bin * Added path to binary * Install cypress * Finalized dockerfile * Fixed bridge lib path * Fixed path for binary * Adjust script again * Run all the things properly * Try to run the tests * First POC test * First POC test in gitlab * Fixed flow * Fixed gitlab test url, try docker service * export artifacts * Test only integration tests in CI * Test only integration tests in CI 2 * Test only integration tests in CI 3 * Added tests for initialize device * Try to add docker in only one step * Turn on other integration steps * Correct node version * Ignore cache in flow * Run bridge and emulator in debug link mode * Fix param * Try to run new config in CI * init device in docker * Remove docker image after run * Remove amp * Fix path * Artifacts on fail * Artifacts on fail with volume * Artifacts on fail with volume 2 * Install mkdir * Install mkdir again * test * test 2 * test 3 * test 4 * test 5 * test 6 * test 7 * test 8 * test 9 * test 10 * test 11 * test 12 * test 13 * test 14 * test 15 * test 16 * test 17 * Revert "test 17" This reverts commit f3f6c0d6906cdc470aa11ae728b4b61a6b71a732. * test 18 * test 19 * test 20 * test 21 try chrome * test 22 * test 23 * test 24 * test 25 * test 25 try to install chrome again * test 25 try to install chrome again * Added missing deps * Added debug * Install chromium * Install chromium 2 * turn on chromium * turn off debug * turn on debug * fix folder * turn off debug * Fix init device * Add header dashboard test * Bring things back * clean * clean fix * Build image in CI * Added stage step * Added docker image * Added service * Added tests to docker image * Refactor a bit * Correct registry image * Build wallet again * Add test for dashbaord content * new node version, more tests * Remove unused code * typo * Correct snapshots, moved deps to dev, beta disclaimer prop
2019-02-05 13:26:40 +00:00
"request": "^2.88.0",
"rimraf": "^2.6.2",
"styled-components": "^4.1.2",
2018-12-10 11:13:49 +00:00
"styled-normalize": "^8.0.4",
Integration tests (#311) * Add base test env * Add eslint rules for cypress * Add configs and scripts in package json * Added docker file for bridge and emualator * Bridge install progress * Bridge install next step * Add task for integration tests * Fixed deps * Added baseUrl * Added baseUrl fix * Added npx * Added caching for cypress bin * Added path to binary * Install cypress * Finalized dockerfile * Fixed bridge lib path * Fixed path for binary * Adjust script again * Run all the things properly * Try to run the tests * First POC test * First POC test in gitlab * Fixed flow * Fixed gitlab test url, try docker service * export artifacts * Test only integration tests in CI * Test only integration tests in CI 2 * Test only integration tests in CI 3 * Added tests for initialize device * Try to add docker in only one step * Turn on other integration steps * Correct node version * Ignore cache in flow * Run bridge and emulator in debug link mode * Fix param * Try to run new config in CI * init device in docker * Remove docker image after run * Remove amp * Fix path * Artifacts on fail * Artifacts on fail with volume * Artifacts on fail with volume 2 * Install mkdir * Install mkdir again * test * test 2 * test 3 * test 4 * test 5 * test 6 * test 7 * test 8 * test 9 * test 10 * test 11 * test 12 * test 13 * test 14 * test 15 * test 16 * test 17 * Revert "test 17" This reverts commit f3f6c0d6906cdc470aa11ae728b4b61a6b71a732. * test 18 * test 19 * test 20 * test 21 try chrome * test 22 * test 23 * test 24 * test 25 * test 25 try to install chrome again * test 25 try to install chrome again * Added missing deps * Added debug * Install chromium * Install chromium 2 * turn on chromium * turn off debug * turn on debug * fix folder * turn off debug * Fix init device * Add header dashboard test * Bring things back * clean * clean fix * Build image in CI * Added stage step * Added docker image * Added service * Added tests to docker image * Refactor a bit * Correct registry image * Build wallet again * Add test for dashbaord content * new node version, more tests * Remove unused code * typo * Correct snapshots, moved deps to dev, beta disclaimer prop
2019-02-05 13:26:40 +00:00
"trezor-bridge-communicator": "1.0.2",
2019-01-09 16:35:47 +00:00
"trezor-connect": "7.0.0-beta.2",
"wallet-address-validator": "^0.2.4",
"web3": "1.0.0-beta.35",
2018-07-30 11:44:39 +00:00
"webpack": "^4.16.3",
"webpack-build-notifier": "^0.1.29",
2018-09-05 14:52:29 +00:00
"webpack-bundle-analyzer": "^2.13.1",
2018-07-30 11:44:39 +00:00
"whatwg-fetch": "^2.0.4",
"yarn-run-all": "^3.1.1"
2017-12-13 11:01:37 +00:00
},
"devDependencies": {
"babel-cli": "^6.24.1",
2018-07-30 10:23:30 +00:00
"babel-eslint": "^8.2.6",
2018-07-30 12:10:57 +00:00
"babel-loader": "^7.1.5",
2018-08-14 12:56:47 +00:00
"babel-plugin-module-resolver": "^3.1.1",
2018-07-30 14:30:25 +00:00
"babel-plugin-styled-components": "^1.5.1",
2017-12-13 11:01:37 +00:00
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
2018-07-30 12:10:57 +00:00
"babel-preset-jest": "^23.2.0",
2018-05-17 20:08:34 +00:00
"babel-preset-react": "^6.24.1",
Integration tests (#311) * Add base test env * Add eslint rules for cypress * Add configs and scripts in package json * Added docker file for bridge and emualator * Bridge install progress * Bridge install next step * Add task for integration tests * Fixed deps * Added baseUrl * Added baseUrl fix * Added npx * Added caching for cypress bin * Added path to binary * Install cypress * Finalized dockerfile * Fixed bridge lib path * Fixed path for binary * Adjust script again * Run all the things properly * Try to run the tests * First POC test * First POC test in gitlab * Fixed flow * Fixed gitlab test url, try docker service * export artifacts * Test only integration tests in CI * Test only integration tests in CI 2 * Test only integration tests in CI 3 * Added tests for initialize device * Try to add docker in only one step * Turn on other integration steps * Correct node version * Ignore cache in flow * Run bridge and emulator in debug link mode * Fix param * Try to run new config in CI * init device in docker * Remove docker image after run * Remove amp * Fix path * Artifacts on fail * Artifacts on fail with volume * Artifacts on fail with volume 2 * Install mkdir * Install mkdir again * test * test 2 * test 3 * test 4 * test 5 * test 6 * test 7 * test 8 * test 9 * test 10 * test 11 * test 12 * test 13 * test 14 * test 15 * test 16 * test 17 * Revert "test 17" This reverts commit f3f6c0d6906cdc470aa11ae728b4b61a6b71a732. * test 18 * test 19 * test 20 * test 21 try chrome * test 22 * test 23 * test 24 * test 25 * test 25 try to install chrome again * test 25 try to install chrome again * Added missing deps * Added debug * Install chromium * Install chromium 2 * turn on chromium * turn off debug * turn on debug * fix folder * turn off debug * Fix init device * Add header dashboard test * Bring things back * clean * clean fix * Build image in CI * Added stage step * Added docker image * Added service * Added tests to docker image * Refactor a bit * Correct registry image * Build wallet again * Add test for dashbaord content * new node version, more tests * Remove unused code * typo * Correct snapshots, moved deps to dev, beta disclaimer prop
2019-02-05 13:26:40 +00:00
"cypress": "^3.1.5",
"cypress-image-snapshot": "^3.0.0",
2018-08-14 13:10:08 +00:00
"eslint": "^4",
2018-07-30 10:23:30 +00:00
"eslint-config-airbnb": "^17.0.0",
2018-08-14 12:56:47 +00:00
"eslint-import-resolver-babel-module": "^4.0.0",
2018-09-05 13:05:57 +00:00
"eslint-loader": "^2.1.0",
Integration tests (#311) * Add base test env * Add eslint rules for cypress * Add configs and scripts in package json * Added docker file for bridge and emualator * Bridge install progress * Bridge install next step * Add task for integration tests * Fixed deps * Added baseUrl * Added baseUrl fix * Added npx * Added caching for cypress bin * Added path to binary * Install cypress * Finalized dockerfile * Fixed bridge lib path * Fixed path for binary * Adjust script again * Run all the things properly * Try to run the tests * First POC test * First POC test in gitlab * Fixed flow * Fixed gitlab test url, try docker service * export artifacts * Test only integration tests in CI * Test only integration tests in CI 2 * Test only integration tests in CI 3 * Added tests for initialize device * Try to add docker in only one step * Turn on other integration steps * Correct node version * Ignore cache in flow * Run bridge and emulator in debug link mode * Fix param * Try to run new config in CI * init device in docker * Remove docker image after run * Remove amp * Fix path * Artifacts on fail * Artifacts on fail with volume * Artifacts on fail with volume 2 * Install mkdir * Install mkdir again * test * test 2 * test 3 * test 4 * test 5 * test 6 * test 7 * test 8 * test 9 * test 10 * test 11 * test 12 * test 13 * test 14 * test 15 * test 16 * test 17 * Revert "test 17" This reverts commit f3f6c0d6906cdc470aa11ae728b4b61a6b71a732. * test 18 * test 19 * test 20 * test 21 try chrome * test 22 * test 23 * test 24 * test 25 * test 25 try to install chrome again * test 25 try to install chrome again * Added missing deps * Added debug * Install chromium * Install chromium 2 * turn on chromium * turn off debug * turn on debug * fix folder * turn off debug * Fix init device * Add header dashboard test * Bring things back * clean * clean fix * Build image in CI * Added stage step * Added docker image * Added service * Added tests to docker image * Refactor a bit * Correct registry image * Build wallet again * Add test for dashbaord content * new node version, more tests * Remove unused code * typo * Correct snapshots, moved deps to dev, beta disclaimer prop
2019-02-05 13:26:40 +00:00
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-cypress": "^2.2.0",
2018-07-30 10:23:30 +00:00
"eslint-plugin-flowtype": "^2.50.0",
2018-08-14 12:56:47 +00:00
"eslint-plugin-import": "^2.14.0",
2018-07-30 10:23:30 +00:00
"eslint-plugin-jest": "^21.18.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
2018-05-17 20:08:34 +00:00
"file-loader": "1.1.11",
2018-12-20 16:40:56 +00:00
"flow-bin": "0.75.0",
2018-07-30 11:44:39 +00:00
"jest": "^23.4.2",
2018-09-05 13:52:03 +00:00
"stylelint": "^8.0.0",
2018-08-10 13:33:23 +00:00
"stylelint-config-standard": "^18.2.0",
"stylelint-config-styled-components": "^0.1.1",
2018-09-05 12:54:24 +00:00
"stylelint-custom-processor-loader": "^0.5.0",
2018-08-10 13:33:23 +00:00
"stylelint-processor-styled-components": "^1.3.2",
2018-09-05 12:54:24 +00:00
"stylelint-webpack-plugin": "^0.10.5",
2018-05-17 20:08:34 +00:00
"webpack-cli": "^2.1.3",
"webpack-dev-server": "^3.1.4",
2018-03-08 16:10:53 +00:00
"yargs": "11.0.0"
2018-10-02 13:43:03 +00:00
},
"optionalDependencies": {
"fsevents": "*"
2017-12-13 11:01:37 +00:00
}
}