Files
trezor-suite/package.json
2023-03-06 13:24:38 +01:00

146 lines
6.4 KiB
JSON

{
"name": "trezor-suite",
"version": "1.0.0",
"private": true,
"repository": "https://github.com/trezor/trezor-suite.git",
"license": "SEE LICENSE IN LICENSE.md",
"engines": {
"node": "18",
"yarn": ">=3"
},
"workspaces": {
"packages": [
"packages/*",
"suite-native/*",
"suite-common/*",
"scripts"
]
},
"scripts": {
"_______ Hooks _______": "Yarn hooks.",
"postinstall": "yarn run patch-package",
"_______ Library Scripts #####": "Some libraries have their own build scripts.",
"build:libs": "yarn nx run-many --skip-nx-cache --target=build:lib",
"suite:build:web": "yarn workspace @trezor/suite-web build",
"_______ Start Scripts _______": "Here are standalone scripts for running individual applications for development.",
"suite:dev": "yarn workspace @trezor/suite-web dev",
"suite:dev:ios": "yarn workspace @trezor/suite-native dev:ios",
"suite:dev:android": "yarn workspace @trezor/suite-native dev:android",
"suite:dev:desktop": "yarn workspace @trezor/suite-desktop dev",
"_______ Testing _______": "Testing, linting, type checking...",
"type-check": "yarn nx run-many --target=type-check",
"type-check:force": "rimraf -rf -- **/libDev && yarn type-check",
"test:unit": "yarn nx run-many --target=test:unit",
"lint:js": "yarn nx run-many --target=lint:js",
"lint:styles": "yarn nx run-many --target=lint:styles",
"lint": "yarn lint:styles && yarn lint:js",
"lint-staged": "npx lint-staged",
"lint:shellcheck": "./scripts/shellcheck.sh",
"_______ Global Scripts _______": "Shared scripts for running in all workspaces",
"g:eslint": "cd $INIT_CWD && eslint --report-unused-disable-directives --cache --ignore-path ../../.gitignore",
"g:jest": "cd $INIT_CWD && jest",
"_______ 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",
"nx:test-unit": "yarn nx affected --target=test:unit",
"nx:lint:js": "yarn nx affected --target=lint:js",
"nx:lint:styles": "yarn nx affected --target=lint:styles",
"_______ Commands _______": "Useful commands and scripts.",
"patch": "yarn patch-package",
"update-project-references": "yarn tsx ./scripts/updateProjectReferences.js",
"verify-project-references": "yarn update-project-references --test",
"check-workspace-resolutions": "yarn tsx ./scripts/check-workspace-resolutions.ts",
"generate-package": "yarn tsx ./scripts/generatePackage.js",
"deps": "rimraf 'node_modules' '*/**/node_modules' && yarn",
"msg-system-sign-config": "yarn workspace @trezor/message-system sign-config",
"format": "yarn prettier --write \"**/*.{js,ts,tsx,mdx,md,html,json}\"",
"format:verify": "yarn prettier --check \"**/*.{js,ts,tsx,mdx,md,html,json}\"",
"update-submodules": "./scripts/update-submodules.sh",
"update-coins": "./scripts/update-coins.sh",
"update-protobuf": "yarn workspace @trezor/transport update:protobuf",
"update-coinjoin-middleware": "yarn workspace @trezor/suite-data update-coinjoin-middleware",
"_______ Aliases _______": "Aliases for longer commands which we often have to run manually. Names don't have to be pretty or make total sense.",
"refs": "yarn update-project-references",
"types": "yarn type-check",
"messages": "yarn msg-system-sign-config",
"validate": "yarn verify-project-references && yarn nx:lint:js && yarn nx:lint:styles && yarn nx:build:libs && yarn nx:type-check && yarn nx:test-unit && yarn check-workspace-resolutions"
},
"lint-staged": {
"packages/**/*.{ts,tsx}": [
"eslint --fix",
"git add"
],
"packages/{components,suite}/**/*.{ts,tsx}": [
"stylelit --fix",
"git add"
]
},
"resolutions": {
"typescript": "4.9.5",
"react-native": "0.71.3",
"prettier": "2.8.4",
"type-fest": "2.12.2",
"bcrypto": "5.4.0",
"react": "18.2.0",
"electron": "23.1.1",
"@jest/types": "27.5.1",
"webpack": "^5.75.0",
"css-loader": "^6.7.3",
"html-webpack-plugin": "^5.5.0",
"@types/node": "18.13.0"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/node": "^7.20.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.20.13",
"@nrwl/nx-cloud": "15.0.3",
"@suite-common/wallet-types": "workspace:*",
"@types/jest": "^26.0.24",
"@types/node": "^18.13.0",
"@types/prettier": "^2.7.2",
"@types/semver": "^7.3.13",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"babel-jest": "^26.6.3",
"eslint": "^8.33.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "0.73.7",
"npm-run-all": "^4.1.5",
"nx": "15.6.3",
"patch-package": "6.5.1",
"postinstall-postinstall": "^2.1.0",
"prettier": "2.8.4",
"prettier-eslint": "^15.0.1",
"rimraf": "^4.1.2",
"semver": "^7.3.8",
"ts-jest": "^26.5.6",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"tsx": "^3.12.3",
"typescript": "4.9.5",
"version-bump-prompt": "^6.1.0"
},
"dependenciesMeta": {
"core-js-pure": {
"built": false
}
},
"packageManager": "yarn@3.2.2"
}