mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-03 05:55:03 +01:00
chore: use global tsx
This commit is contained in:
@@ -42,6 +42,7 @@
|
||||
"g:prettier": "cd $INIT_CWD && prettier",
|
||||
"g:rimraf": "cd $INIT_CWD && rimraf",
|
||||
"g:tsc": "cd $INIT_CWD && tsc",
|
||||
"g:tsx": "cd $INIT_CWD && tsx",
|
||||
"_______ Nx testing _______": "Nx wrapped commands for testing, linting, type checking...",
|
||||
"nx:build:libs": "yarn nx affected --target=build:lib",
|
||||
"nx:type-check": "yarn nx affected --target=type-check",
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "yarn g:tsc --build",
|
||||
"dev": "tsx watch ./src/index.ts",
|
||||
"dev": "yarn g:tsx watch ./src/index.ts",
|
||||
"build": "rimraf ./lib && yarn g:tsc --build tsconfig.lib.json",
|
||||
"start": "node ./lib/index.js"
|
||||
},
|
||||
@@ -17,7 +17,6 @@
|
||||
"express": "^4.18.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/cors": "^2.8.15",
|
||||
"tsx": "^4.7.0"
|
||||
"@types/cors": "^2.8.15"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,8 +12,8 @@
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "yarn g:tsc --build",
|
||||
"build:lib": "yarn g:rimraf ./lib && yarn g:tsc --build tsconfig.lib.json",
|
||||
"prepublishOnly": "yarn tsx ../../scripts/prepublishNPM.js",
|
||||
"prepublish": "yarn tsx ../../scripts/prepublish.js"
|
||||
"prepublishOnly": "yarn g:tsx ../../scripts/prepublishNPM.js",
|
||||
"prepublish": "yarn g:tsx ../../scripts/prepublish.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@solana/web3.js": "^1.87.6",
|
||||
@@ -22,7 +22,6 @@
|
||||
"socks-proxy-agent": "6.1.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"ripple-lib": "^1.10.1",
|
||||
"tsx": "^4.7.0"
|
||||
"ripple-lib": "^1.10.1"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -13,8 +13,8 @@
|
||||
"test:unit": "yarn g:jest -c ../../jest.config.base.js",
|
||||
"type-check": "yarn g:tsc --build",
|
||||
"build:lib": "yarn g:rimraf ./lib && yarn g:tsc --build tsconfig.lib.json",
|
||||
"prepublishOnly": "yarn tsx ../../scripts/prepublishNPM.js",
|
||||
"prepublish": "yarn tsx ../../scripts/prepublish.js"
|
||||
"prepublishOnly": "yarn g:tsx ../../scripts/prepublishNPM.js",
|
||||
"prepublish": "yarn g:tsx ../../scripts/prepublish.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@mobily/ts-belt": "^3.13.1",
|
||||
@@ -24,8 +24,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@trezor/blockchain-link-types": "workspace:*",
|
||||
"@trezor/type-utils": "workspace:*",
|
||||
"tsx": "^4.7.0"
|
||||
"@trezor/type-utils": "workspace:*"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"tslib": "^2.6.2"
|
||||
|
||||
@@ -38,7 +38,7 @@
|
||||
},
|
||||
"scripts": {
|
||||
"dev": "webpack serve --config ./webpack/dev.js",
|
||||
"dev:electrum": "tsx watch ./src/workers/electrum/devrun.ts",
|
||||
"dev:electrum": "yarn g:tsx watch ./src/workers/electrum/devrun.ts",
|
||||
"dev:module": "USE_MODULES=true webpack serve --config ./webpack/dev.js",
|
||||
"build:lib": "yarn g:rimraf lib && yarn g:tsc --build ./tsconfig.lib.json",
|
||||
"build:workers": "yarn g:rimraf build && yarn build:workers-web && yarn build:workers-module",
|
||||
@@ -48,8 +48,8 @@
|
||||
"test:unit": "yarn g:jest --verbose -c jest.config.unit.js",
|
||||
"test:integration": "yarn g:jest -c jest.config.integration.js",
|
||||
"type-check": "yarn g:tsc --build tsconfig.json",
|
||||
"prepublishOnly": "yarn tsx ../../scripts/prepublishNPM.js",
|
||||
"prepublish": "yarn tsx ../../scripts/prepublish.js"
|
||||
"prepublishOnly": "yarn g:tsx ../../scripts/prepublishNPM.js",
|
||||
"prepublish": "yarn g:tsx ../../scripts/prepublish.js"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@trezor/e2e-utils": "workspace:*",
|
||||
@@ -57,7 +57,6 @@
|
||||
"fs-extra": "^11.1.1",
|
||||
"html-webpack-plugin": "^5.5.3",
|
||||
"tiny-worker": "^2.3.0",
|
||||
"tsx": "^4.7.0",
|
||||
"webpack": "^5.89.0",
|
||||
"webpack-cli": "^5.1.4",
|
||||
"webpack-dev-server": "^4.15.1",
|
||||
|
||||
@@ -18,9 +18,9 @@
|
||||
"scripts": {
|
||||
"lint:js": "eslint '**/*.{ts,js}'",
|
||||
"test:unit": "yarn g:jest",
|
||||
"test:discovery": "tsx ./tests/tools/discovery-test.ts",
|
||||
"test:anonymity": "tsx ./tests/tools/anonymity-test.ts",
|
||||
"test:benchmark": "tsx ./tests/tools/benchmark-test.ts",
|
||||
"test:discovery": "yarn g:tsx ./tests/tools/discovery-test.ts",
|
||||
"test:anonymity": "yarn g:tsx ./tests/tools/anonymity-test.ts",
|
||||
"test:benchmark": "yarn g:tsx ./tests/tools/benchmark-test.ts",
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
|
||||
@@ -32,16 +32,13 @@
|
||||
"test:unit": "yarn g:jest",
|
||||
"build:lib": "yarn g:rimraf lib && yarn g:tsc --build ./tsconfig.lib.json",
|
||||
"type-check": "yarn g:tsc --build tsconfig.json",
|
||||
"prepublishOnly": "yarn tsx ../../scripts/prepublishNPM.js",
|
||||
"prepublish": "yarn tsx ../../scripts/prepublish.js"
|
||||
"prepublishOnly": "yarn g:tsx ../../scripts/prepublishNPM.js",
|
||||
"prepublish": "yarn g:tsx ../../scripts/prepublish.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@trezor/env-utils": "workspace:*",
|
||||
"@trezor/utils": "workspace:*"
|
||||
},
|
||||
"devDependencies": {
|
||||
"tsx": "^4.7.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"tslib": "^2.6.2"
|
||||
}
|
||||
|
||||
@@ -35,8 +35,8 @@
|
||||
"build:webextension": "TS_NODE_PROJECT=\"tsconfig.lib.json\" yarn webpack --config ./webpack/prod.webpack.config.ts",
|
||||
"build": "yarn g:rimraf build && yarn build:inline && yarn build:webextension",
|
||||
"test:e2e": "yarn playwright install && yarn xvfb-maybe -- playwright test --config=./e2e/playwright.config.ts",
|
||||
"prepublishOnly": "yarn tsx ../../scripts/prepublishNPM.js",
|
||||
"prepublish": "yarn tsx ../../scripts/prepublish.js"
|
||||
"prepublishOnly": "yarn g:tsx ../../scripts/prepublishNPM.js",
|
||||
"prepublish": "yarn g:tsx ../../scripts/prepublish.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@trezor/connect": "workspace:*",
|
||||
@@ -53,7 +53,6 @@
|
||||
"html-webpack-plugin": "^5.5.3",
|
||||
"selfsigned": "^2.4.1",
|
||||
"terser-webpack-plugin": "^5.3.9",
|
||||
"tsx": "^4.7.0",
|
||||
"webpack": "^5.89.0",
|
||||
"webpack-cli": "^5.1.4",
|
||||
"webpack-merge": "^5.10.0",
|
||||
|
||||
@@ -39,14 +39,14 @@
|
||||
"test:unit": "jest --version && jest",
|
||||
"type-check": "yarn g:tsc --build",
|
||||
"build:lib": "yarn g:rimraf ./lib && yarn g:tsc --build tsconfig.lib.json",
|
||||
"version:beta": "tsx scripts/bump-version.ts prerelease",
|
||||
"version:patch": "tsx scripts/bump-version.ts patch",
|
||||
"version:minor": "tsx scripts/bump-version.ts minor",
|
||||
"version:major": "tsx scripts/bump-version.ts major",
|
||||
"version:beta": "yarn g:tsx scripts/bump-version.ts prerelease",
|
||||
"version:patch": "yarn g:tsx scripts/bump-version.ts patch",
|
||||
"version:minor": "yarn g:tsx scripts/bump-version.ts minor",
|
||||
"version:major": "yarn g:tsx scripts/bump-version.ts major",
|
||||
"test:e2e:web": "ts-node -O '{\"module\": \"commonjs\", \"moduleResolution\": \"node\"}' ./e2e/run.ts web",
|
||||
"test:e2e:node": "ts-node -O '{\"module\": \"commonjs\", \"moduleResolution\": \"node\"}' ./e2e/run.ts node",
|
||||
"prepublishOnly": "yarn tsx ../../scripts/prepublishNPM.js",
|
||||
"prepublish": "yarn tsx ../../scripts/prepublish.js"
|
||||
"prepublishOnly": "yarn g:tsx ../../scripts/prepublishNPM.js",
|
||||
"prepublish": "yarn g:tsx ../../scripts/prepublish.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@ethereumjs/common": "^4.1.0",
|
||||
@@ -83,7 +83,6 @@
|
||||
"karma-sourcemap-loader": "^0.4.0",
|
||||
"karma-webpack": "^5.0.0",
|
||||
"ts-node": "^10.9.1",
|
||||
"tsx": "^4.7.0",
|
||||
"webpack": "^5.89.0",
|
||||
"ws": "^8.16.0"
|
||||
},
|
||||
|
||||
@@ -21,15 +21,12 @@
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "yarn g:tsc --build",
|
||||
"build:lib": "yarn g:rimraf ./lib && yarn g:tsc --build tsconfig.lib.json",
|
||||
"prepublishOnly": "yarn tsx ../../scripts/prepublishNPM.js",
|
||||
"prepublish": "yarn tsx ../../scripts/prepublish.js"
|
||||
"prepublishOnly": "yarn g:tsx ../../scripts/prepublishNPM.js",
|
||||
"prepublish": "yarn g:tsx ../../scripts/prepublish.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"ua-parser-js": "^1.0.37"
|
||||
},
|
||||
"devDependencies": {
|
||||
"tsx": "^4.7.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"expo-localization": "*",
|
||||
"react-native": "*",
|
||||
|
||||
@@ -27,8 +27,8 @@
|
||||
"build:lib": "yarn g:rimraf ./lib && yarn g:tsc --build tsconfig.lib.json",
|
||||
"update:schema": "yarn workspace @trezor/schema-utils codegen $(pwd)/src/messages.ts > src/messages-schema.ts && npx prettier --write src/messages-schema.ts && eslint --fix src/messages-schema.ts",
|
||||
"update:protobuf": "./scripts/protobuf-build.sh && npx prettier --write \"{messages.json,src/messages.ts}\"",
|
||||
"prepublishOnly": "yarn tsx ../../scripts/prepublishNPM.js",
|
||||
"prepublish": "yarn tsx ../../scripts/prepublish.js"
|
||||
"prepublishOnly": "yarn g:tsx ../../scripts/prepublishNPM.js",
|
||||
"prepublish": "yarn g:tsx ../../scripts/prepublish.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@trezor/schema-utils": "workspace:*",
|
||||
@@ -36,8 +36,7 @@
|
||||
"protobufjs": "7.2.5"
|
||||
},
|
||||
"devDependencies": {
|
||||
"protobufjs-cli": "^1.1.2",
|
||||
"tsx": "^4.7.0"
|
||||
"protobufjs-cli": "^1.1.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"tslib": "^2.6.2"
|
||||
|
||||
@@ -21,11 +21,8 @@
|
||||
"test:unit": "yarn g:jest -c ../../jest.config.base.js",
|
||||
"type-check": "yarn g:tsc --build",
|
||||
"build:lib": "yarn g:rimraf ./lib && yarn g:tsc --build tsconfig.lib.json",
|
||||
"prepublishOnly": "yarn tsx ../../scripts/prepublishNPM.js",
|
||||
"prepublish": "yarn tsx ../../scripts/prepublish.js"
|
||||
},
|
||||
"devDependencies": {
|
||||
"tsx": "^4.7.0"
|
||||
"prepublishOnly": "yarn g:tsx ../../scripts/prepublishNPM.js",
|
||||
"prepublish": "yarn g:tsx ../../scripts/prepublish.js"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"tslib": "^2.6.2"
|
||||
|
||||
@@ -14,12 +14,11 @@
|
||||
"type-check": "yarn g:tsc --build",
|
||||
"build:lib": "rimraf ./lib && yarn g:tsc --build tsconfig.lib.json",
|
||||
"codegen": "ts-node --skip-project ./src/codegen.ts",
|
||||
"prepublishOnly": "yarn tsx ../../scripts/prepublishNPM.js",
|
||||
"prepublish": "yarn tsx ../../scripts/prepublish.js"
|
||||
"prepublishOnly": "yarn g:tsx ../../scripts/prepublishNPM.js",
|
||||
"prepublish": "yarn g:tsx ../../scripts/prepublish.js"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@sinclair/typebox-codegen": "^0.8.13",
|
||||
"tsx": "^4.6.2"
|
||||
"@sinclair/typebox-codegen": "^0.8.13"
|
||||
},
|
||||
"dependencies": {
|
||||
"@sinclair/typebox": "^0.31.28",
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
"scripts": {
|
||||
"build:lib": "yarn browser-detection && yarn guide-pull-content",
|
||||
"browser-detection": "webpack --config ./browser-detection.webpack.ts",
|
||||
"guide-pull-content": "tsx ./src/guide/index.ts",
|
||||
"guide-pull-content": "yarn g:tsx ./src/guide/index.ts",
|
||||
"update-coinjoin-middleware": "./files/bin/coinjoin/update.sh",
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "yarn g:tsc --build tsconfig.json"
|
||||
@@ -39,7 +39,6 @@
|
||||
"postcss-modules-values": "^4.0.0",
|
||||
"simple-git": "^3.20.0",
|
||||
"style-loader": "^3.3.3",
|
||||
"tsx": "^4.7.0",
|
||||
"webpack": "^5.89.0",
|
||||
"webpack-cli": "^5.1.4"
|
||||
},
|
||||
|
||||
@@ -50,7 +50,6 @@
|
||||
"electron": "27.0.4",
|
||||
"glob": "^10.3.10",
|
||||
"terser-webpack-plugin": "^5.3.9",
|
||||
"tsx": "^4.7.0",
|
||||
"webpack": "^5.87.0",
|
||||
"xvfb-maybe": "^0.2.1"
|
||||
}
|
||||
|
||||
@@ -54,7 +54,6 @@
|
||||
"cypress-image-snapshot": "^4.0.1",
|
||||
"stylelint": "^15.11.0",
|
||||
"stylelint-config-standard": "^34.0.0",
|
||||
"tsx": "^4.7.0",
|
||||
"webpack": "^5.89.0",
|
||||
"ws": "^8.16.0",
|
||||
"yargs": "17.7.2"
|
||||
|
||||
@@ -11,9 +11,9 @@
|
||||
"translations:extract": "formatjs extract src/support/messages.ts --format simple > ../suite-data/files/translations/master.json",
|
||||
"translations:upload": "crowdin upload",
|
||||
"translations:download": "crowdin download --all",
|
||||
"translations:backport-en": "yarn tsx ../suite-data/src/translations/backport-en.ts && yarn g:prettier --write \"./src/support/messages.ts\"",
|
||||
"translations:list-duplicates": "yarn tsx ../suite-data/src/translations/list-duplicates.ts",
|
||||
"translations:list-unused": "yarn tsx ../suite-data/src/translations/list-unused.ts",
|
||||
"translations:backport-en": "yarn g:tsx ../suite-data/src/translations/backport-en.ts && yarn g:prettier --write \"./src/support/messages.ts\"",
|
||||
"translations:list-duplicates": "yarn g:tsx ../suite-data/src/translations/list-duplicates.ts",
|
||||
"translations:list-unused": "yarn g:tsx ../suite-data/src/translations/list-unused.ts",
|
||||
"type-check": "yarn g:tsc --build tsconfig.json",
|
||||
"test:unit": "yarn g:jest",
|
||||
"test-unit:watch": "yarn g:jest -o --watch"
|
||||
@@ -144,7 +144,6 @@
|
||||
"redux-mock-store": "^1.5.4",
|
||||
"stylelint": "^15.11.0",
|
||||
"stylelint-config-standard": "^34.0.0",
|
||||
"tsx": "^4.7.0",
|
||||
"typescript-styled-plugin": "^0.18.3"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,8 +12,5 @@
|
||||
"dependencies": {
|
||||
"@mobily/ts-belt": "^3.13.1",
|
||||
"csstype": "^3.1.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"tsx": "^4.7.0"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -39,8 +39,8 @@
|
||||
"publish:lib": "./scripts/publish-lib.sh",
|
||||
"test:unit": "jest",
|
||||
"test:e2e": "ts-node -O '{\"module\": \"commonjs\", \"esModuleInterop\": true}' ./e2e/run.ts",
|
||||
"prepublishOnly": "yarn tsx ../../scripts/prepublishNPM.js",
|
||||
"prepublish": "yarn tsx ../../scripts/prepublish.js"
|
||||
"prepublishOnly": "yarn g:tsx ../../scripts/prepublishNPM.js",
|
||||
"prepublish": "yarn g:tsx ../../scripts/prepublish.js"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@trezor/trezor-user-env-link": "workspace:*",
|
||||
@@ -48,8 +48,7 @@
|
||||
"@types/sharedworker": "^0.0.105",
|
||||
"@types/w3c-web-usb": "^1.0.9",
|
||||
"jest": "29.7.0",
|
||||
"ts-node": "^10.9.1",
|
||||
"tsx": "^4.7.0"
|
||||
"ts-node": "^10.9.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"@trezor/protobuf": "workspace:*",
|
||||
|
||||
@@ -24,11 +24,8 @@
|
||||
"test:unit": "yarn g:jest --verbose -c ../../jest.config.base.js",
|
||||
"type-check": "yarn g:tsc --build tsconfig.json",
|
||||
"build:lib": "yarn g:rimraf ./lib && yarn g:tsc --build tsconfig.lib.json",
|
||||
"prepublishOnly": "yarn tsx ../../scripts/prepublishNPM.js",
|
||||
"prepublish": "yarn tsx ../../scripts/prepublish.js"
|
||||
},
|
||||
"devDependencies": {
|
||||
"tsx": "^4.7.0"
|
||||
"prepublishOnly": "yarn g:tsx ../../scripts/prepublishNPM.js",
|
||||
"prepublish": "yarn g:tsx ../../scripts/prepublish.js"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"tslib": "^2.6.2"
|
||||
|
||||
@@ -32,8 +32,8 @@
|
||||
"test:unit": "yarn g:jest --verbose -c jest.config.js",
|
||||
"type-check": "yarn g:tsc --build tsconfig.json",
|
||||
"build:lib": "yarn g:rimraf lib && yarn g:tsc --build ./tsconfig.lib.json",
|
||||
"prepublishOnly": "yarn tsx ../../scripts/prepublishNPM.js",
|
||||
"prepublish": "yarn tsx ../../scripts/prepublish.js"
|
||||
"prepublishOnly": "yarn g:tsx ../../scripts/prepublishNPM.js",
|
||||
"prepublish": "yarn g:tsx ../../scripts/prepublish.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@trezor/utils": "workspace:*",
|
||||
@@ -62,8 +62,7 @@
|
||||
"@types/create-hash": "^1.2.4",
|
||||
"@types/create-hmac": "^1.1.2",
|
||||
"@types/wif": "^2.0.4",
|
||||
"minimaldata": "^1.0.2",
|
||||
"tsx": "^4.7.0"
|
||||
"minimaldata": "^1.0.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"tslib": "^2.6.2"
|
||||
|
||||
@@ -17,8 +17,5 @@
|
||||
"@suite-common/test-utils": "workspace:*",
|
||||
"@suite-common/toast-notifications": "workspace:*",
|
||||
"@trezor/connect": "workspace:*"
|
||||
},
|
||||
"devDependencies": {
|
||||
"tsx": "^4.7.0"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "yarn g:tsc --build",
|
||||
"generate-icons": "yarn tsx generateIcons.js"
|
||||
"generate-icons": "yarn g:tsx generateIcons.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@shopify/react-native-skia": "0.1.234",
|
||||
@@ -23,7 +23,6 @@
|
||||
"styled-components": "^5.3.10"
|
||||
},
|
||||
"devDependencies": {
|
||||
"svgo": "3.0.2",
|
||||
"tsx": "^4.7.0"
|
||||
"svgo": "3.0.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,9 +7,9 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"build:lib": "yarn msg-system-types && yarn sign-config",
|
||||
"msg-system-types": "tsx ./scripts/generate-types.ts",
|
||||
"validate-config": "tsx ./scripts/validate-config.ts",
|
||||
"sign-config": "tsx ./scripts/sign-config.ts",
|
||||
"msg-system-types": "yarn g:tsx ./scripts/generate-types.ts",
|
||||
"validate-config": "yarn g:tsx ./scripts/validate-config.ts",
|
||||
"sign-config": "yarn g:tsx ./scripts/sign-config.ts",
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"test:unit": "yarn g:jest",
|
||||
"type-check": "yarn g:tsc --build"
|
||||
@@ -33,8 +33,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@suite-common/test-utils": "workspace:*",
|
||||
"@types/fs-extra": "^11.0.3",
|
||||
"tsx": "^4.7.0"
|
||||
"@types/fs-extra": "^11.0.3"
|
||||
},
|
||||
"nx": {
|
||||
"targets": {
|
||||
|
||||
@@ -15,8 +15,5 @@
|
||||
"@suite-common/wallet-config": "workspace:*",
|
||||
"@trezor/connect": "workspace:*",
|
||||
"bignumber.js": "^9.1.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"tsx": "^4.7.0"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "yarn g:tsc --build",
|
||||
"generate-videos": "yarn tsx ./scripts/generateVideos.ts"
|
||||
"generate-videos": "yarn g:tsx ./scripts/generateVideos.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@suite-native/atoms": "workspace:*",
|
||||
@@ -17,7 +17,6 @@
|
||||
"expo-av": "13.10.3",
|
||||
"prettier": "3.2.4",
|
||||
"react": "18.2.0",
|
||||
"react-native": "0.73.2",
|
||||
"tsx": "^4.7.0"
|
||||
"react-native": "0.73.2"
|
||||
}
|
||||
}
|
||||
|
||||
29
yarn.lock
29
yarn.lock
@@ -7157,7 +7157,6 @@ __metadata:
|
||||
"@suite-common/test-utils": "workspace:*"
|
||||
"@suite-common/toast-notifications": "workspace:*"
|
||||
"@trezor/connect": "workspace:*"
|
||||
tsx: "npm:^4.7.0"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
@@ -7233,7 +7232,6 @@ __metadata:
|
||||
react-svg: "npm:^16.1.17"
|
||||
styled-components: "npm:^5.3.10"
|
||||
svgo: "npm:3.0.2"
|
||||
tsx: "npm:^4.7.0"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
@@ -7286,7 +7284,6 @@ __metadata:
|
||||
jws: "npm:^4.0.0"
|
||||
proxy-memoize: "npm:2.0.2"
|
||||
semver: "npm:^7.5.4"
|
||||
tsx: "npm:^4.7.0"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
@@ -7416,7 +7413,6 @@ __metadata:
|
||||
"@suite-common/wallet-config": "workspace:*"
|
||||
"@trezor/connect": "workspace:*"
|
||||
bignumber.js: "npm:^9.1.1"
|
||||
tsx: "npm:^4.7.0"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
@@ -8665,7 +8661,6 @@ __metadata:
|
||||
prettier: "npm:3.2.4"
|
||||
react: "npm:18.2.0"
|
||||
react-native: "npm:0.73.2"
|
||||
tsx: "npm:^4.7.0"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
@@ -8912,7 +8907,6 @@ __metadata:
|
||||
"@types/cors": "npm:^2.8.15"
|
||||
cors: "npm:^2.8.5"
|
||||
express: "npm:^4.18.2"
|
||||
tsx: "npm:^4.7.0"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
@@ -8925,7 +8919,6 @@ __metadata:
|
||||
"@trezor/utxo-lib": "workspace:*"
|
||||
ripple-lib: "npm:^1.10.1"
|
||||
socks-proxy-agent: "npm:6.1.1"
|
||||
tsx: "npm:^4.7.0"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
@@ -8939,7 +8932,6 @@ __metadata:
|
||||
"@trezor/type-utils": "workspace:*"
|
||||
"@trezor/utils": "workspace:*"
|
||||
bignumber.js: "npm:^9.1.1"
|
||||
tsx: "npm:^4.7.0"
|
||||
peerDependencies:
|
||||
tslib: ^2.6.2
|
||||
languageName: unknown
|
||||
@@ -8965,7 +8957,6 @@ __metadata:
|
||||
ripple-lib: "npm:^1.10.1"
|
||||
socks-proxy-agent: "npm:6.1.1"
|
||||
tiny-worker: "npm:^2.3.0"
|
||||
tsx: "npm:^4.7.0"
|
||||
webpack: "npm:^5.89.0"
|
||||
webpack-cli: "npm:^5.1.4"
|
||||
webpack-dev-server: "npm:^4.15.1"
|
||||
@@ -9058,7 +9049,6 @@ __metadata:
|
||||
dependencies:
|
||||
"@trezor/env-utils": "workspace:*"
|
||||
"@trezor/utils": "workspace:*"
|
||||
tsx: "npm:^4.7.0"
|
||||
peerDependencies:
|
||||
tslib: ^2.6.2
|
||||
languageName: unknown
|
||||
@@ -9246,7 +9236,6 @@ __metadata:
|
||||
html-webpack-plugin: "npm:^5.5.3"
|
||||
selfsigned: "npm:^2.4.1"
|
||||
terser-webpack-plugin: "npm:^5.3.9"
|
||||
tsx: "npm:^4.7.0"
|
||||
webpack: "npm:^5.89.0"
|
||||
webpack-cli: "npm:^5.1.4"
|
||||
webpack-merge: "npm:^5.10.0"
|
||||
@@ -9274,7 +9263,6 @@ __metadata:
|
||||
copy-webpack-plugin: "npm:^12.0.1"
|
||||
events: "npm:^3.3.0"
|
||||
terser-webpack-plugin: "npm:^5.3.9"
|
||||
tsx: "npm:^4.7.0"
|
||||
typescript: "npm:^4.9.5"
|
||||
webpack: "npm:^5.87.0"
|
||||
webpack-cli: "npm:^5.1.4"
|
||||
@@ -9322,7 +9310,6 @@ __metadata:
|
||||
karma-sourcemap-loader: "npm:^0.4.0"
|
||||
karma-webpack: "npm:^5.0.0"
|
||||
ts-node: "npm:^10.9.1"
|
||||
tsx: "npm:^4.7.0"
|
||||
webpack: "npm:^5.89.0"
|
||||
ws: "npm:^8.16.0"
|
||||
peerDependencies:
|
||||
@@ -9365,7 +9352,6 @@ __metadata:
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@trezor/env-utils@workspace:packages/env-utils"
|
||||
dependencies:
|
||||
tsx: "npm:^4.7.0"
|
||||
ua-parser-js: "npm:^1.0.37"
|
||||
peerDependencies:
|
||||
expo-localization: "*"
|
||||
@@ -9402,7 +9388,6 @@ __metadata:
|
||||
long: "npm:^4.0.0"
|
||||
protobufjs: "npm:7.2.5"
|
||||
protobufjs-cli: "npm:^1.1.2"
|
||||
tsx: "npm:^4.7.0"
|
||||
peerDependencies:
|
||||
tslib: ^2.6.2
|
||||
languageName: unknown
|
||||
@@ -9411,8 +9396,6 @@ __metadata:
|
||||
"@trezor/protocol@workspace:*, @trezor/protocol@workspace:packages/protocol":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@trezor/protocol@workspace:packages/protocol"
|
||||
dependencies:
|
||||
tsx: "npm:^4.7.0"
|
||||
peerDependencies:
|
||||
tslib: ^2.6.2
|
||||
languageName: unknown
|
||||
@@ -9458,7 +9441,6 @@ __metadata:
|
||||
"@sinclair/typebox": "npm:^0.31.28"
|
||||
"@sinclair/typebox-codegen": "npm:^0.8.13"
|
||||
ts-mixer: "npm:^6.0.3"
|
||||
tsx: "npm:^4.6.2"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
@@ -9566,7 +9548,6 @@ __metadata:
|
||||
postcss-modules-values: "npm:^4.0.0"
|
||||
simple-git: "npm:^3.20.0"
|
||||
style-loader: "npm:^3.3.3"
|
||||
tsx: "npm:^4.7.0"
|
||||
webpack: "npm:^5.89.0"
|
||||
webpack-cli: "npm:^5.1.4"
|
||||
languageName: unknown
|
||||
@@ -9618,7 +9599,6 @@ __metadata:
|
||||
openpgp: "npm:^5.11.0"
|
||||
systeminformation: "npm:^5.21.15"
|
||||
terser-webpack-plugin: "npm:^5.3.9"
|
||||
tsx: "npm:^4.7.0"
|
||||
webpack: "npm:^5.87.0"
|
||||
xvfb-maybe: "npm:^0.2.1"
|
||||
languageName: unknown
|
||||
@@ -9723,7 +9703,6 @@ __metadata:
|
||||
styled-components: "npm:^5.3.10"
|
||||
stylelint: "npm:^15.11.0"
|
||||
stylelint-config-standard: "npm:^34.0.0"
|
||||
tsx: "npm:^4.7.0"
|
||||
webpack: "npm:^5.89.0"
|
||||
worker-loader: "npm:^3.0.8"
|
||||
ws: "npm:^8.16.0"
|
||||
@@ -9855,7 +9834,6 @@ __metadata:
|
||||
stylelint: "npm:^15.11.0"
|
||||
stylelint-config-standard: "npm:^34.0.0"
|
||||
trezor-address-validator: "npm:^0.4.4"
|
||||
tsx: "npm:^4.7.0"
|
||||
typescript-styled-plugin: "npm:^0.18.3"
|
||||
uuid: "npm:^9.0.1"
|
||||
web3-utils: "npm:^1.10.0"
|
||||
@@ -9869,7 +9847,6 @@ __metadata:
|
||||
dependencies:
|
||||
"@mobily/ts-belt": "npm:^3.13.1"
|
||||
csstype: "npm:^3.1.2"
|
||||
tsx: "npm:^4.7.0"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
@@ -9915,7 +9892,6 @@ __metadata:
|
||||
long: "npm:^4.0.0"
|
||||
protobufjs: "npm:7.2.5"
|
||||
ts-node: "npm:^10.9.1"
|
||||
tsx: "npm:^4.7.0"
|
||||
usb: "npm:^2.11.0"
|
||||
peerDependencies:
|
||||
tslib: ^2.6.2
|
||||
@@ -9949,8 +9925,6 @@ __metadata:
|
||||
"@trezor/utils@workspace:*, @trezor/utils@workspace:^, @trezor/utils@workspace:packages/utils":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@trezor/utils@workspace:packages/utils"
|
||||
dependencies:
|
||||
tsx: "npm:^4.7.0"
|
||||
peerDependencies:
|
||||
tslib: ^2.6.2
|
||||
languageName: unknown
|
||||
@@ -9982,7 +9956,6 @@ __metadata:
|
||||
minimaldata: "npm:^1.0.2"
|
||||
pushdata-bitcoin: "npm:^1.0.1"
|
||||
tiny-secp256k1: "npm:^1.1.6"
|
||||
tsx: "npm:^4.7.0"
|
||||
typeforce: "npm:^1.18.0"
|
||||
varuint-bitcoin: "npm:^1.1.2"
|
||||
wif: "npm:^4.0.0"
|
||||
@@ -32355,7 +32328,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"tsx@npm:^4.6.2, tsx@npm:^4.7.0":
|
||||
"tsx@npm:^4.7.0":
|
||||
version: 4.7.0
|
||||
resolution: "tsx@npm:4.7.0"
|
||||
dependencies:
|
||||
|
||||
Reference in New Issue
Block a user