mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-02-23 02:02:18 +01:00
chore: update typescript and use global tsc
This commit is contained in:
@@ -85,7 +85,7 @@
|
||||
]
|
||||
},
|
||||
"resolutions": {
|
||||
"typescript": "5.3.2",
|
||||
"typescript": "5.3.3",
|
||||
"react-native": "0.73.2",
|
||||
"prettier": "3.2.4",
|
||||
"type-fest": "2.12.2",
|
||||
@@ -146,7 +146,7 @@
|
||||
"ts-node": "^10.9.2",
|
||||
"tsconfig-paths": "^4.2.0",
|
||||
"tsx": "^4.7.0",
|
||||
"typescript": "5.3.2",
|
||||
"typescript": "5.3.3",
|
||||
"version-bump-prompt": "^6.1.0"
|
||||
},
|
||||
"dependenciesMeta": {
|
||||
|
||||
@@ -11,16 +11,13 @@
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"test:unit": "yarn g:jest -c ../../jest.config.base.js",
|
||||
"type-check": "tsc --build",
|
||||
"build:lib": "yarn g:rimraf lib && yarn tsc --build ./tsconfig.lib.json"
|
||||
"type-check": "yarn g:tsc --build",
|
||||
"build:lib": "yarn g:rimraf lib && yarn g:tsc --build ./tsconfig.lib.json"
|
||||
},
|
||||
"dependencies": {
|
||||
"@trezor/env-utils": "workspace:*",
|
||||
"@trezor/utils": "workspace:*"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "5.3.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"tslib": "^2.6.2"
|
||||
}
|
||||
|
||||
@@ -7,9 +7,9 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build",
|
||||
"type-check": "yarn g:tsc --build",
|
||||
"dev": "tsx watch ./src/index.ts",
|
||||
"build": "rimraf ./lib && yarn tsc --build tsconfig.lib.json",
|
||||
"build": "rimraf ./lib && yarn g:tsc --build tsconfig.lib.json",
|
||||
"start": "node ./lib/index.js"
|
||||
},
|
||||
"dependencies": {
|
||||
@@ -18,7 +18,6 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/cors": "^2.8.15",
|
||||
"tsx": "^4.7.0",
|
||||
"typescript": "5.3.2"
|
||||
"tsx": "^4.7.0"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,8 +10,8 @@
|
||||
],
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build",
|
||||
"build:lib": "yarn g:rimraf ./lib && yarn tsc --build tsconfig.lib.json",
|
||||
"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"
|
||||
},
|
||||
@@ -23,7 +23,6 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"ripple-lib": "^1.10.1",
|
||||
"tsx": "^4.7.0",
|
||||
"typescript": "5.3.2"
|
||||
"tsx": "^4.7.0"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,8 +11,8 @@
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"test:unit": "yarn g:jest -c ../../jest.config.base.js",
|
||||
"type-check": "tsc --build",
|
||||
"build:lib": "yarn g:rimraf ./lib && yarn tsc --build tsconfig.lib.json",
|
||||
"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"
|
||||
},
|
||||
@@ -25,8 +25,7 @@
|
||||
"devDependencies": {
|
||||
"@trezor/blockchain-link-types": "workspace:*",
|
||||
"@trezor/type-utils": "workspace:*",
|
||||
"tsx": "^4.7.0",
|
||||
"typescript": "5.3.2"
|
||||
"tsx": "^4.7.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"tslib": "^2.6.2"
|
||||
|
||||
@@ -40,14 +40,14 @@
|
||||
"dev": "webpack serve --config ./webpack/dev.js",
|
||||
"dev:electrum": "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 tsc --build ./tsconfig.lib.json",
|
||||
"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",
|
||||
"build:workers-web": "webpack --config ./webpack/workers.web.js",
|
||||
"build:workers-module": "webpack --config ./webpack/workers.module.js",
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"test:unit": "yarn g:jest --verbose -c jest.config.unit.js",
|
||||
"test:integration": "yarn g:jest -c jest.config.integration.js",
|
||||
"type-check": "tsc --build tsconfig.json",
|
||||
"type-check": "yarn g:tsc --build tsconfig.json",
|
||||
"prepublishOnly": "yarn tsx ../../scripts/prepublishNPM.js",
|
||||
"prepublish": "yarn tsx ../../scripts/prepublish.js"
|
||||
},
|
||||
@@ -58,7 +58,6 @@
|
||||
"html-webpack-plugin": "^5.5.3",
|
||||
"tiny-worker": "^2.3.0",
|
||||
"tsx": "^4.7.0",
|
||||
"typescript": "5.3.2",
|
||||
"webpack": "^5.89.0",
|
||||
"webpack-cli": "^5.1.4",
|
||||
"webpack-dev-server": "^4.15.1",
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
"test:discovery": "tsx ./tests/tools/discovery-test.ts",
|
||||
"test:anonymity": "tsx ./tests/tools/anonymity-test.ts",
|
||||
"test:benchmark": "tsx ./tests/tools/benchmark-test.ts",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@trezor/blockchain-link": "workspace:*",
|
||||
@@ -34,8 +34,5 @@
|
||||
"events": "^3.3.0",
|
||||
"golomb": "1.2.0",
|
||||
"n64": "^0.2.10"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "5.3.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
"lint": "yarn lint:js && yarn lint:styles",
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"lint-fix": "npx eslint ./src --fix",
|
||||
"type-check": "tsc --build tsconfig.json",
|
||||
"type-check": "yarn g:tsc --build tsconfig.json",
|
||||
"type-check:watch": "yarn type-check -- --watch",
|
||||
"storybook": "storybook dev -p 9003 -c .storybook",
|
||||
"storybook-build": "storybook build -c .storybook -o .build-storybook"
|
||||
@@ -59,7 +59,6 @@
|
||||
"storybook": "^7.5.3",
|
||||
"stylelint": "^15.11.0",
|
||||
"stylelint-config-standard": "^34.0.0",
|
||||
"typescript": "5.3.2",
|
||||
"typescript-styled-plugin": "^0.18.3"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,15 +10,12 @@
|
||||
],
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build",
|
||||
"build:lib": "yarn g:rimraf lib && yarn tsc --build ./tsconfig.lib.json"
|
||||
"type-check": "yarn g:tsc --build",
|
||||
"build:lib": "yarn g:rimraf lib && yarn g:tsc --build ./tsconfig.lib.json"
|
||||
},
|
||||
"dependencies": {
|
||||
"@trezor/analytics": "workspace:*"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "5.3.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"tslib": "^2.6.2"
|
||||
}
|
||||
|
||||
@@ -30,8 +30,8 @@
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"test:unit": "yarn g:jest",
|
||||
"build:lib": "yarn g:rimraf lib && yarn tsc --build ./tsconfig.lib.json",
|
||||
"type-check": "tsc --build tsconfig.json",
|
||||
"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"
|
||||
},
|
||||
@@ -40,8 +40,7 @@
|
||||
"@trezor/utils": "workspace:*"
|
||||
},
|
||||
"devDependencies": {
|
||||
"tsx": "^4.7.0",
|
||||
"typescript": "5.3.2"
|
||||
"tsx": "^4.7.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"tslib": "^2.6.2"
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
"@types/react": "18.0.32",
|
||||
"copy-webpack-plugin": "^11.0.0",
|
||||
"html-webpack-plugin": "^5.5.3",
|
||||
"typescript": "5.3.2",
|
||||
"webpack": "^5.88.2",
|
||||
"webpack-cli": "^5.1.4",
|
||||
"xvfb-maybe": "^0.2.1"
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
"build:webextension": "yarn g:rimraf build-webextension && TS_NODE_PROJECT=\"tsconfig.json\" yarn webpack --config ./webpack/webextension.webpack.config.ts",
|
||||
"lint:js": "yarn g:eslint '**/*{.ts,.tsx}'",
|
||||
"lint:styles": "npx stylelint './src/**/*{.ts,.tsx}' --cache --config ../../.stylelintrc",
|
||||
"type-check": "tsc --build tsconfig.json"
|
||||
"type-check": "yarn g:tsc --build tsconfig.json"
|
||||
},
|
||||
"dependencies": {
|
||||
"@trezor/components": "workspace:*",
|
||||
@@ -44,7 +44,6 @@
|
||||
"stylelint": "^15.11.0",
|
||||
"stylelint-config-standard": "^34.0.0",
|
||||
"terser-webpack-plugin": "^5.3.9",
|
||||
"typescript": "5.3.2",
|
||||
"webpack": "^5.89.0",
|
||||
"webpack-cli": "^5.1.4",
|
||||
"webpack-dev-server": "^4.15.1",
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
"build": "yarn g:rimraf build && yarn build:iframe && yarn build:core-module",
|
||||
"___NOTE__": "iframe build is one of the prerequisites of suite-web. build:lib script provides it together with other libraries",
|
||||
"build:lib": "yarn build",
|
||||
"type-check": "tsc --build tsconfig.json",
|
||||
"type-check": "yarn g:tsc --build tsconfig.json",
|
||||
"test:unit": "yarn g:jest"
|
||||
},
|
||||
"dependencies": {
|
||||
@@ -23,7 +23,6 @@
|
||||
"es6-promise": "^4.2.8",
|
||||
"html-webpack-plugin": "^5.5.3",
|
||||
"terser-webpack-plugin": "^5.3.9",
|
||||
"typescript": "5.3.2",
|
||||
"webpack": "^5.89.0",
|
||||
"webpack-cli": "^5.1.4",
|
||||
"webpack-merge": "^5.10.0",
|
||||
|
||||
@@ -30,13 +30,12 @@
|
||||
"tslib": "^2.6.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@metamask/eth-sig-util": "^7.0.1",
|
||||
"typescript": "5.3.2"
|
||||
"@metamask/eth-sig-util": "^7.0.1"
|
||||
},
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"test:unit": "yarn g:jest -c ../../jest.config.base.js",
|
||||
"type-check": "tsc --build tsconfig.json",
|
||||
"build:lib": "yarn g:rimraf ./lib && yarn tsc --build tsconfig.lib.json"
|
||||
"type-check": "yarn g:tsc --build tsconfig.json",
|
||||
"build:lib": "yarn g:rimraf ./lib && yarn g:tsc --build tsconfig.lib.json"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -29,8 +29,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"stellar-base": "v10.0.0-beta.2",
|
||||
"stellar-sdk": "^v11.0.0-beta.3",
|
||||
"typescript": "5.3.2"
|
||||
"stellar-sdk": "^v11.0.0-beta.3"
|
||||
},
|
||||
"dependencies": {
|
||||
"bignumber.js": "^9.1.1"
|
||||
@@ -38,7 +37,7 @@
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"test:unit": "jest -c ../../jest.config.base.js",
|
||||
"type-check": "tsc --build tsconfig.json",
|
||||
"build:lib": "yarn g:rimraf ./lib && yarn tsc --build tsconfig.lib.json"
|
||||
"type-check": "yarn g:tsc --build tsconfig.json",
|
||||
"build:lib": "yarn g:rimraf ./lib && yarn g:tsc --build tsconfig.lib.json"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"lint:styles": "npx stylelint './src/**/*{.ts,.tsx}' --cache --config ../../.stylelintrc",
|
||||
"type-check": "tsc --build",
|
||||
"type-check": "yarn g:tsc --build",
|
||||
"dev": "yarn g:rimraf build && TS_NODE_PROJECT=\"tsconfig.json\" yarn webpack --config ./webpack/dev.webpack.config.ts",
|
||||
"build:popup": "TS_NODE_PROJECT=\"tsconfig.json\" yarn webpack --config ./webpack/prod.webpack.config.ts",
|
||||
"build": "yarn g:rimraf build && yarn workspace @trezor/connect-popup build:popup",
|
||||
@@ -39,7 +39,6 @@
|
||||
"copy-webpack-plugin": "^11.0.0",
|
||||
"html-webpack-plugin": "^5.5.3",
|
||||
"terser-webpack-plugin": "^5.3.9",
|
||||
"typescript": "5.3.2",
|
||||
"webpack": "^5.89.0",
|
||||
"webpack-cli": "^5.1.4",
|
||||
"webpack-dev-server": "^4.15.1",
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"lint:styles": "npx stylelint './src/**/*{.ts,.tsx}' --cache --config ../../.stylelintrc",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@trezor/components": "workspace:*",
|
||||
@@ -21,8 +21,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/react": "18.0.32",
|
||||
"@types/styled-components": "^5.1.29",
|
||||
"typescript": "5.3.2"
|
||||
"@types/styled-components": "^5.1.29"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"react": "18.2.0",
|
||||
|
||||
@@ -27,9 +27,9 @@
|
||||
"scripts": {
|
||||
"predev": "node webpack/generate_dev_cert.js",
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build",
|
||||
"type-check": "yarn g:tsc --build",
|
||||
"test:unit": "yarn g:jest",
|
||||
"build:lib": "yarn g:rimraf ./lib && yarn tsc --build tsconfig.lib.json",
|
||||
"build:lib": "yarn g:rimraf ./lib && yarn g:tsc --build tsconfig.lib.json",
|
||||
"dev": "yarn g:rimraf build && TS_NODE_PROJECT=\"tsconfig.lib.json\" yarn webpack --config ./webpack/dev.webpack.config.ts",
|
||||
"build:inline": "TS_NODE_PROJECT=\"tsconfig.lib.json\" webpack --config ./webpack/inline.webpack.config.ts",
|
||||
"build:webextension": "TS_NODE_PROJECT=\"tsconfig.lib.json\" yarn webpack --config ./webpack/prod.webpack.config.ts",
|
||||
@@ -54,7 +54,6 @@
|
||||
"selfsigned": "^2.4.1",
|
||||
"terser-webpack-plugin": "^5.3.9",
|
||||
"tsx": "^4.7.0",
|
||||
"typescript": "5.3.2",
|
||||
"webpack": "^5.89.0",
|
||||
"webpack-cli": "^5.1.4",
|
||||
"webpack-merge": "^5.10.0",
|
||||
|
||||
@@ -30,7 +30,7 @@
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"test:e2e": "yarn xvfb-maybe -- playwright test --config=./e2e/playwright.config.ts",
|
||||
"build:lib": "yarn g:rimraf ./lib && yarn tsc --build tsconfig.lib.json",
|
||||
"build:lib": "yarn g:rimraf ./lib && yarn g:tsc --build tsconfig.lib.json",
|
||||
"build:content-script": "TS_NODE_PROJECT=\"tsconfig.lib.json\" webpack --config ./webpack/content-script.webpack.config.ts",
|
||||
"build:inline": "TS_NODE_PROJECT=\"tsconfig.lib.json\" webpack --config ./webpack/inline.webpack.config.ts",
|
||||
"build:webextension": "TS_NODE_PROJECT=\"tsconfig.lib.json\" yarn webpack --config ./webpack/prod.webpack.config.ts",
|
||||
@@ -52,8 +52,6 @@
|
||||
"@types/chrome": "latest",
|
||||
"copy-webpack-plugin": "^12.0.1",
|
||||
"terser-webpack-plugin": "^5.3.9",
|
||||
"tsx": "^4.7.0",
|
||||
"typescript": "^4.9.5",
|
||||
"webpack": "^5.87.0",
|
||||
"webpack-cli": "^5.1.4",
|
||||
"webpack-merge": "^5.9.0",
|
||||
|
||||
@@ -37,8 +37,8 @@
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"test:unit": "jest --version && jest",
|
||||
"type-check": "tsc --build",
|
||||
"build:lib": "yarn g:rimraf ./lib && yarn tsc --build tsconfig.lib.json",
|
||||
"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",
|
||||
@@ -84,7 +84,6 @@
|
||||
"karma-webpack": "^5.0.0",
|
||||
"ts-node": "^10.9.1",
|
||||
"tsx": "^4.7.0",
|
||||
"typescript": "5.3.2",
|
||||
"webpack": "^5.89.0",
|
||||
"ws": "^8.16.0"
|
||||
},
|
||||
|
||||
@@ -7,9 +7,6 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "5.3.2"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,12 +7,9 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@trezor/connect": "workspace:*"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "5.3.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,9 +7,6 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "5.3.2"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"events": "^3.3.0",
|
||||
|
||||
@@ -19,8 +19,8 @@
|
||||
],
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build",
|
||||
"build:lib": "yarn g:rimraf ./lib && yarn tsc --build tsconfig.lib.json",
|
||||
"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"
|
||||
},
|
||||
@@ -28,8 +28,7 @@
|
||||
"ua-parser-js": "^1.0.37"
|
||||
},
|
||||
"devDependencies": {
|
||||
"tsx": "^4.7.0",
|
||||
"typescript": "5.3.2"
|
||||
"tsx": "^4.7.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"expo-localization": "*",
|
||||
|
||||
@@ -18,6 +18,6 @@
|
||||
"scripts": {
|
||||
"lint:js": "eslint '**/*.{ts,tsx,js}'",
|
||||
"test:unit": "jest -c ./jest.config.js",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -8,13 +8,10 @@
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"test:unit": "jest -c ../../jest.config.base.js",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@trezor/type-utils": "workspace:*",
|
||||
"@trezor/utils": "workspace:*"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "5.3.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"test:unit": "yarn g:jest -c ../../jest.config.base.js",
|
||||
"type-check": "tsc --build",
|
||||
"build:lib": "yarn g:rimraf ./lib && yarn tsc --build tsconfig.lib.json",
|
||||
"type-check": "yarn g:tsc --build",
|
||||
"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",
|
||||
@@ -37,8 +37,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"protobufjs-cli": "^1.1.2",
|
||||
"tsx": "^4.7.0",
|
||||
"typescript": "5.3.2"
|
||||
"tsx": "^4.7.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"tslib": "^2.6.2"
|
||||
|
||||
@@ -19,14 +19,13 @@
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"test:unit": "yarn g:jest -c ../../jest.config.base.js",
|
||||
"type-check": "tsc --build",
|
||||
"build:lib": "yarn g:rimraf ./lib && yarn tsc --build tsconfig.lib.json",
|
||||
"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",
|
||||
"typescript": "5.3.2"
|
||||
"tsx": "^4.7.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"tslib": "^2.6.2"
|
||||
|
||||
@@ -7,14 +7,11 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@trezor/type-utils": "workspace:*",
|
||||
"@trezor/utils": "workspace:*",
|
||||
"react": "18.2.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "5.3.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"test:e2e": "yarn g:jest --runInBand -c ../../jest.config.base.js",
|
||||
"type-check": "tsc --build tsconfig.json",
|
||||
"type-check": "yarn g:tsc --build tsconfig.json",
|
||||
"test:stress": "ts-node -O '{\"module\": \"commonjs\"}' ./e2e/identities-stress.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
@@ -18,7 +18,6 @@
|
||||
"devDependencies": {
|
||||
"cross-fetch": "^4.0.0",
|
||||
"ts-node": "^10.9.1",
|
||||
"typescript": "5.3.2",
|
||||
"ws": "^8.16.0"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,16 +11,15 @@
|
||||
"scripts": {
|
||||
"test:unit": "yarn g:jest",
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build",
|
||||
"build:lib": "rimraf ./lib && yarn tsc --build tsconfig.lib.json",
|
||||
"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"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@sinclair/typebox-codegen": "^0.8.13",
|
||||
"tsx": "^4.6.2",
|
||||
"typescript": "5.3.2"
|
||||
"tsx": "^4.6.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@sinclair/typebox": "^0.31.28",
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
"main": "src/index",
|
||||
"sideEffects": false,
|
||||
"scripts": {
|
||||
"type-check": "tsc --build",
|
||||
"type-check": "yarn g:tsc --build",
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"test:unit": "yarn g:jest -c ../../jest.config.base.js"
|
||||
},
|
||||
@@ -29,8 +29,5 @@
|
||||
"react": "18.2.0",
|
||||
"react-fela": "^12.2.1",
|
||||
"react-native": "0.73.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "5.3.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,12 +7,9 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@trezor/analytics": "workspace:*"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "5.3.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
"dev:desktop": "yarn run desktop",
|
||||
"build:desktop": "NODE_ENV=production yarn run desktop",
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build tsconfig.json",
|
||||
"type-check": "yarn g:tsc --build tsconfig.json",
|
||||
"type-check:watch": "yarn type-check -- --watch"
|
||||
},
|
||||
"dependencies": {
|
||||
@@ -48,7 +48,6 @@
|
||||
"@types/copy-webpack-plugin": "^10.1.0",
|
||||
"@types/webpack-bundle-analyzer": "^4.6.2",
|
||||
"@types/webpack-plugin-serve": "^1.4.4",
|
||||
"react-refresh": "^0.14.0",
|
||||
"typescript": "5.3.2"
|
||||
"react-refresh": "^0.14.0"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
"guide-pull-content": "tsx ./src/guide/index.ts",
|
||||
"update-coinjoin-middleware": "./files/bin/coinjoin/update.sh",
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build tsconfig.json"
|
||||
"type-check": "yarn g:tsc --build tsconfig.json"
|
||||
},
|
||||
"dependencies": {
|
||||
"@suite-common/suite-types": "workspace:*",
|
||||
@@ -40,7 +40,6 @@
|
||||
"simple-git": "^3.20.0",
|
||||
"style-loader": "^3.3.3",
|
||||
"tsx": "^4.7.0",
|
||||
"typescript": "5.3.2",
|
||||
"webpack": "^5.89.0",
|
||||
"webpack-cli": "^5.1.4"
|
||||
},
|
||||
|
||||
@@ -16,12 +16,9 @@
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*{.ts,.tsx}'",
|
||||
"test:unit": "yarn g:jest --verbose -c jest.config.js",
|
||||
"type-check": "tsc --build tsconfig.json"
|
||||
"type-check": "yarn g:tsc --build tsconfig.json"
|
||||
},
|
||||
"dependencies": {
|
||||
"electron": "27.0.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "5.3.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
"scripts": {
|
||||
"build:core": "yarn g:rimraf dist && TS_NODE_PROJECT=\"tsconfig.json\" yarn webpack --config ./webpack/core.webpack.config.ts",
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build tsconfig.json",
|
||||
"type-check": "yarn g:tsc --build tsconfig.json",
|
||||
"test:unit": "yarn g:jest",
|
||||
"test:e2e": "yarn xvfb-maybe -- playwright test --config=./e2e/playwright.config.ts"
|
||||
},
|
||||
@@ -51,7 +51,6 @@
|
||||
"glob": "^10.3.10",
|
||||
"terser-webpack-plugin": "^5.3.9",
|
||||
"tsx": "^4.7.0",
|
||||
"typescript": "5.3.2",
|
||||
"webpack": "^5.87.0",
|
||||
"xvfb-maybe": "^0.2.1"
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
"sideEffects": false,
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"type-check": "tsc --build tsconfig.json",
|
||||
"type-check": "yarn g:tsc --build tsconfig.json",
|
||||
"type-check:watch": "yarn type-check -- --watch",
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"lint:styles": "npx stylelint './src/**/*{.ts,.tsx}' --cache --config ../../.stylelintrc"
|
||||
@@ -37,7 +37,6 @@
|
||||
"@types/react-dom": "18.2.14",
|
||||
"@types/styled-components": "^5.1.29",
|
||||
"stylelint": "^15.11.0",
|
||||
"stylelint-config-standard": "^34.0.0",
|
||||
"typescript": "5.3.2"
|
||||
"stylelint-config-standard": "^34.0.0"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
"description": "trezor suite storage",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build tsconfig.json",
|
||||
"type-check": "yarn g:tsc --build tsconfig.json",
|
||||
"type-check:watch": "yarn type-check -- --watch"
|
||||
},
|
||||
"main": "./src/web/index.ts",
|
||||
@@ -21,8 +21,5 @@
|
||||
"@trezor/env-utils": "workspace:*",
|
||||
"broadcast-channel": "^6.0.0",
|
||||
"idb": "^7.1.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "5.3.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"type-check": "tsc --build tsconfig.json",
|
||||
"type-check": "yarn g:tsc --build tsconfig.json",
|
||||
"type-check:watch": "yarn type-check -- --watch",
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"lint:styles": "npx stylelint './src/**/*{.ts,.tsx}' --cache --config ../../.stylelintrc",
|
||||
@@ -55,7 +55,6 @@
|
||||
"stylelint": "^15.11.0",
|
||||
"stylelint-config-standard": "^34.0.0",
|
||||
"tsx": "^4.7.0",
|
||||
"typescript": "5.3.2",
|
||||
"webpack": "^5.89.0",
|
||||
"ws": "^8.16.0",
|
||||
"yargs": "17.7.2"
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
"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",
|
||||
"type-check": "tsc --build tsconfig.json",
|
||||
"type-check": "yarn g:tsc --build tsconfig.json",
|
||||
"test:unit": "yarn g:jest",
|
||||
"test-unit:watch": "yarn g:jest -o --watch"
|
||||
},
|
||||
@@ -145,7 +145,6 @@
|
||||
"stylelint": "^15.11.0",
|
||||
"stylelint-config-standard": "^34.0.0",
|
||||
"tsx": "^4.7.0",
|
||||
"typescript": "5.3.2",
|
||||
"typescript-styled-plugin": "^0.18.3"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,14 +7,13 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@mobily/ts-belt": "^3.13.1",
|
||||
"csstype": "^3.1.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"tsx": "^4.7.0",
|
||||
"typescript": "5.3.2"
|
||||
"tsx": "^4.7.0"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,13 +6,12 @@
|
||||
"private": true,
|
||||
"sideEffects": false,
|
||||
"scripts": {
|
||||
"type-check": "tsc --build",
|
||||
"type-check": "yarn g:tsc --build",
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/cors": "^2.8.15",
|
||||
"@types/express": "^4",
|
||||
"typescript": "4.9.5"
|
||||
"@types/express": "^4"
|
||||
},
|
||||
"dependencies": {
|
||||
"@trezor/node-utils": "workspace:^",
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@trezor/react-native-usb": "workspace:*",
|
||||
|
||||
@@ -34,8 +34,8 @@
|
||||
],
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build tsconfig.json",
|
||||
"build:lib": "yarn g:rimraf -rf lib && yarn tsc --build ./tsconfig.lib.json",
|
||||
"type-check": "yarn g:tsc --build tsconfig.json",
|
||||
"build:lib": "yarn g:rimraf -rf lib && yarn g:tsc --build ./tsconfig.lib.json",
|
||||
"publish:lib": "./scripts/publish-lib.sh",
|
||||
"test:unit": "jest",
|
||||
"test:e2e": "ts-node -O '{\"module\": \"commonjs\", \"esModuleInterop\": true}' ./e2e/run.ts",
|
||||
@@ -49,8 +49,7 @@
|
||||
"@types/w3c-web-usb": "^1.0.9",
|
||||
"jest": "29.7.0",
|
||||
"ts-node": "^10.9.1",
|
||||
"tsx": "^4.7.0",
|
||||
"typescript": "5.3.2"
|
||||
"tsx": "^4.7.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@trezor/protobuf": "workspace:*",
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@trezor/utils": "workspace:*",
|
||||
|
||||
@@ -9,9 +9,6 @@
|
||||
],
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "5.3.2"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,11 +7,10 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build",
|
||||
"type-check": "yarn g:tsc --build",
|
||||
"test:e2e": "yarn g:jest -c ../../jest.config.base.js"
|
||||
},
|
||||
"devDependencies": {
|
||||
"cross-fetch": "^4.0.0",
|
||||
"typescript": "5.3.2"
|
||||
"cross-fetch": "^4.0.0"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,14 +22,13 @@
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"test:unit": "yarn g:jest --verbose -c ../../jest.config.base.js",
|
||||
"type-check": "tsc --build tsconfig.json",
|
||||
"build:lib": "yarn g:rimraf ./lib && yarn tsc --build tsconfig.lib.json",
|
||||
"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",
|
||||
"typescript": "5.3.2"
|
||||
"tsx": "^4.7.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"tslib": "^2.6.2"
|
||||
|
||||
@@ -30,8 +30,8 @@
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"test:unit": "yarn g:jest --verbose -c jest.config.js",
|
||||
"type-check": "tsc --build tsconfig.json",
|
||||
"build:lib": "yarn g:rimraf lib && yarn tsc --build ./tsconfig.lib.json",
|
||||
"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"
|
||||
},
|
||||
@@ -63,8 +63,7 @@
|
||||
"@types/create-hmac": "^1.1.2",
|
||||
"@types/wif": "^2.0.4",
|
||||
"minimaldata": "^1.0.2",
|
||||
"tsx": "^4.7.0",
|
||||
"typescript": "5.3.2"
|
||||
"tsx": "^4.7.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"tslib": "^2.6.2"
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
"private": true,
|
||||
"sideEffects": false,
|
||||
"scripts": {
|
||||
"type-check": "tsc --build",
|
||||
"type-check": "yarn g:tsc --build",
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"test:unit": "jest -c ../../jest.config.base.js"
|
||||
},
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"type-check": "tsc --build",
|
||||
"type-check": "yarn g:tsc --build",
|
||||
"run:analytics": "tsx githubAnalytics.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
@@ -18,7 +18,6 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/fs-extra": "^11.0.3",
|
||||
"@types/prettier": "^3.0.0",
|
||||
"typescript": "5.3.2"
|
||||
"@types/prettier": "^3.0.0"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@reduxjs/toolkit": "1.9.5",
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
"private": true,
|
||||
"sideEffects": false,
|
||||
"scripts": {
|
||||
"type-check": "tsc --build",
|
||||
"type-check": "yarn g:tsc --build",
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"test:unit": "jest -c ../../jest.config.base.js"
|
||||
},
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build tsconfig.json",
|
||||
"type-check": "yarn g:tsc --build tsconfig.json",
|
||||
"test:unit": "yarn g:jest -c ./jest.config.js",
|
||||
"test-unit:watch": "yarn g:jest -c ../../jest.config.base.js -o --watch"
|
||||
},
|
||||
@@ -21,7 +21,6 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"redux-mock-store": "^1.5.4",
|
||||
"redux-thunk": "^2.4.2",
|
||||
"typescript": "5.3.2"
|
||||
"redux-thunk": "^2.4.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"test:unit": "yarn g:jest -c ./jest.config.js",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@reduxjs/toolkit": "1.9.5",
|
||||
@@ -19,7 +19,6 @@
|
||||
"@trezor/connect": "workspace:*"
|
||||
},
|
||||
"devDependencies": {
|
||||
"tsx": "^4.7.0",
|
||||
"typescript": "5.3.2"
|
||||
"tsx": "^4.7.0"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build",
|
||||
"type-check": "yarn g:tsc --build",
|
||||
"test:unit": "yarn g:jest -c ../../jest.config.base.js"
|
||||
},
|
||||
"dependencies": {
|
||||
@@ -16,8 +16,5 @@
|
||||
"@trezor/connect": "workspace:*",
|
||||
"@trezor/utils": "workspace:*",
|
||||
"date-fns": "^2.30.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "5.3.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"test:unit": "yarn g:jest -c=../../jest.config.base.js",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@formatjs/intl": "2.9.6",
|
||||
@@ -26,8 +26,5 @@
|
||||
"react": "18.2.0",
|
||||
"react-intl": "^6.5.1",
|
||||
"react-redux": "8.0.7"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "5.3.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"test:unit": "yarn g:jest -c ../../jest.config.base.js",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@mobily/ts-belt": "^3.13.1",
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build",
|
||||
"type-check": "yarn g:tsc --build",
|
||||
"generate-icons": "yarn tsx generateIcons.js"
|
||||
},
|
||||
"dependencies": {
|
||||
@@ -24,7 +24,6 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"svgo": "3.0.2",
|
||||
"tsx": "^4.7.0",
|
||||
"typescript": "5.3.2"
|
||||
"tsx": "^4.7.0"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,14 +7,11 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@trezor/type-utils": "workspace:*",
|
||||
"react": "18.2.0",
|
||||
"react-intl": "^6.5.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "5.3.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,9 +7,6 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "5.3.2"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@reduxjs/toolkit": "1.9.5",
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
"sign-config": "tsx ./scripts/sign-config.ts",
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"test:unit": "yarn g:jest",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@reduxjs/toolkit": "1.9.5",
|
||||
@@ -34,8 +34,7 @@
|
||||
"devDependencies": {
|
||||
"@suite-common/test-utils": "workspace:*",
|
||||
"@types/fs-extra": "^11.0.3",
|
||||
"tsx": "^4.7.0",
|
||||
"typescript": "5.3.2"
|
||||
"tsx": "^4.7.0"
|
||||
},
|
||||
"nx": {
|
||||
"targets": {
|
||||
|
||||
@@ -7,9 +7,6 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "5.3.2"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build",
|
||||
"type-check": "yarn g:tsc --build",
|
||||
"test:unit": "yarn g:jest -c ../../jest.config.base.js"
|
||||
},
|
||||
"dependencies": {
|
||||
@@ -20,8 +20,5 @@
|
||||
"react": "18.2.0",
|
||||
"react-redux": "8.0.7",
|
||||
"redux": "^4.2.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "5.3.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,15 +7,12 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@sentry/integrations": "7.81.1",
|
||||
"@sentry/types": "7.81.1",
|
||||
"@suite-common/suite-utils": "workspace:*",
|
||||
"@trezor/utils": "workspace:*"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "5.3.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,9 +7,6 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "5.3.2"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,13 +7,10 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@suite-common/wallet-config": "workspace:*",
|
||||
"@trezor/connect": "workspace:*"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "5.3.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@reduxjs/toolkit": "1.9.5",
|
||||
@@ -20,8 +20,5 @@
|
||||
"@trezor/type-utils": "workspace:*",
|
||||
"@trezor/utils": "workspace:*",
|
||||
"bignumber.js": "^9.1.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "5.3.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build",
|
||||
"type-check": "yarn g:tsc --build",
|
||||
"test:unit": "yarn g:jest -c ../../jest.config.base.js",
|
||||
"test-unit:watch": "yarn g:jest -c ../../jest.config.base.js -o --watch"
|
||||
},
|
||||
@@ -22,8 +22,5 @@
|
||||
"@trezor/utils": "workspace:*",
|
||||
"bignumber.js": "^9.1.1",
|
||||
"date-fns": "^2.30.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "5.3.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@mobily/ts-belt": "^3.13.1",
|
||||
@@ -23,8 +23,5 @@
|
||||
"fake-indexeddb": "^4.0.2",
|
||||
"redux": "^4.2.1",
|
||||
"redux-thunk": "^2.4.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "5.3.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"test:unit": "yarn g:jest -c ../../jest.config.base.js",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@reduxjs/toolkit": "1.9.5",
|
||||
@@ -20,8 +20,5 @@
|
||||
"@suite-common/wallet-config": "workspace:*",
|
||||
"@trezor/connect": "workspace:*",
|
||||
"proxy-memoize": "2.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "5.3.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
"private": true,
|
||||
"sideEffects": false,
|
||||
"scripts": {
|
||||
"type-check": "tsc --build",
|
||||
"type-check": "yarn g:tsc --build",
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"test:unit": "yarn g:jest -c ../../jest.config.base.js"
|
||||
},
|
||||
@@ -17,7 +17,6 @@
|
||||
"bignumber.js": "^9.1.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"tsx": "^4.7.0",
|
||||
"typescript": "5.3.2"
|
||||
"tsx": "^4.7.0"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@mobily/ts-belt": "^3.13.1",
|
||||
|
||||
@@ -7,14 +7,11 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@suite-common/intl-types": "workspace:*",
|
||||
"@trezor/connect": "workspace:*",
|
||||
"@trezor/type-utils": "workspace:*"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "5.3.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,9 +7,6 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "5.3.2"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"test:unit": "yarn g:jest -c=../../jest.config.base.js",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@mobily/ts-belt": "^3.13.1",
|
||||
@@ -36,8 +36,5 @@
|
||||
"@trezor/utils": "workspace:*",
|
||||
"date-fns": "^2.30.0",
|
||||
"proxy-memoize": "2.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "5.3.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@suite-common/intl-types": "workspace:*",
|
||||
@@ -20,8 +20,5 @@
|
||||
"@trezor/utils": "workspace:*",
|
||||
"react": "18.2.0",
|
||||
"react-hook-form": "^7.48.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "5.3.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build",
|
||||
"type-check": "yarn g:tsc --build",
|
||||
"test:unit": "yarn g:jest -c ../../jest.config.base.js",
|
||||
"test-unit:watch": "yarn g:jest -c ../../jest.config.base.js -o --watch"
|
||||
},
|
||||
@@ -36,7 +36,6 @@
|
||||
"web3-utils": "^1.10.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/pdfmake": "^0.2.8",
|
||||
"typescript": "5.3.2"
|
||||
"@types/pdfmake": "^0.2.8"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"test:unit": "yarn g:jest -c ../../jest.config.native.js",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@mobily/ts-belt": "^3.13.1",
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@suite-common/icons": "workspace:*",
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@suite-common/analytics": "workspace:*",
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
"ios": "expo run:ios",
|
||||
"start": "expo start --dev-client",
|
||||
"lint:js": "yarn g:eslint .",
|
||||
"type-check": "tsc -b",
|
||||
"type-check": "yarn g:tsc -b",
|
||||
"pods": "npx pod-install",
|
||||
"prebuild": "expo prebuild",
|
||||
"prebuild:clean": "expo prebuild --clean"
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@mobily/ts-belt": "^3.13.1",
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@mobily/ts-belt": "^3.13.1",
|
||||
@@ -30,8 +30,5 @@
|
||||
"react-native-root-toast": "^3.3.1",
|
||||
"react-native-safe-area-context": "4.8.2",
|
||||
"react-redux": "8.0.7"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "5.3.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"test:unit": "yarn g:jest -c ../../jest.config.native.js",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@mobily/ts-belt": "^3.13.1",
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@suite-common/redux-utils": "workspace:*",
|
||||
|
||||
@@ -7,14 +7,11 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@mobily/ts-belt": "^3.13.1",
|
||||
"@suite-common/wallet-config": "workspace:*",
|
||||
"@suite-common/wallet-utils": "workspace:*"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "5.3.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@mobily/ts-belt": "^3.13.1",
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
"@mobily/ts-belt": "^3.13.1"
|
||||
},
|
||||
"scripts": {
|
||||
"type-check": "tsc --build",
|
||||
"type-check": "yarn g:tsc --build",
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"test:unit": "yarn g:jest -c ../../jest.config.base.js"
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@mobily/ts-belt": "^3.13.1",
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@mobily/ts-belt": "^3.13.1",
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@mobily/ts-belt": "^3.13.1",
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@reduxjs/toolkit": "1.9.5",
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@mobily/ts-belt": "^3.13.1",
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"test:unit": "yarn g:jest -c ../../jest.config.base.js",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@mobily/ts-belt": "^3.13.1",
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"main": "src/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@hookform/resolvers": "3.3.2",
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"test:unit": "yarn g:jest -c ../../jest.config.base.js",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "yarn g:tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@mobily/ts-belt": "^3.13.1",
|
||||
@@ -40,8 +40,5 @@
|
||||
"react-native": "0.73.2",
|
||||
"react-native-reanimated": "3.7.0-nightly-20240101-9d365ae7b",
|
||||
"react-redux": "8.0.7"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "5.3.2"
|
||||
}
|
||||
}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user