Files
trezor-suite/packages/request-manager/package.json
Carlos Garcia Ortiz karliatto 8993081ae9 test(request-manager): make tests retry
2025-01-24 14:47:36 +01:00

27 lines
918 B
JSON

{
"name": "@trezor/request-manager",
"version": "1.0.0",
"private": true,
"license": "See LICENSE.md in repo root",
"sideEffects": false,
"main": "src/index.ts",
"scripts": {
"test:all": "yarn g:jest --runInBand -c jest.config.js",
"test:unit": "yarn g:jest --testPathIgnorePatterns e2e -c jest.config.js",
"test:e2e": "yarn g:jest --runInBand --testPathIgnorePatterns tests -c jest.config..js",
"type-check": "yarn g:tsc --build tsconfig.json",
"test:stress": "ts-node -O '{\"module\": \"commonjs\"}' ./e2e/identities-stress.ts"
},
"dependencies": {
"@trezor/node-utils": "workspace:^",
"@trezor/utils": "workspace:*",
"node-fetch": "^2.6.4",
"socks-proxy-agent": "8.0.4"
},
"devDependencies": {
"@trezor/eslint": "workspace:*",
"ts-node": "^10.9.1",
"ws": "^8.18.0"
}
}