forked from trezor/trezor-suite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
148 lines (148 loc) · 6.03 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "@trezor/suite",
"suiteVersion": "23.9.0",
"version": "1.0.0",
"private": true,
"scripts": {
"lint": "yarn lint:styles && yarn lint:js",
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
"lint:styles": "npx stylelint './src/**/*{.ts,.tsx}' --cache",
"translations:format": "yarn prettier --write \"../suite-data/files/translations/*\"",
"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 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",
"test:unit": "jest --version && jest",
"test-unit:watch": "jest -o --watch"
},
"dependencies": {
"@ethereumjs/common": "^3.1.2",
"@ethereumjs/tx": "^4.1.2",
"@fivebinaries/coin-selection": "2.1.0",
"@formatjs/intl": "2.9.0",
"@hookform/resolvers": "3.1.0",
"@reduxjs/toolkit": "1.9.5",
"@sentry/core": "^7.56.0",
"@suite-common/analytics": "workspace:*",
"@suite-common/connect-init": "workspace:*",
"@suite-common/fiat-services": "workspace:*",
"@suite-common/formatters": "workspace:*",
"@suite-common/intl-types": "workspace:*",
"@suite-common/invity": "workspace:*",
"@suite-common/logger": "workspace:*",
"@suite-common/message-system": "workspace:*",
"@suite-common/metadata-types": "workspace:*",
"@suite-common/redux-utils": "workspace:*",
"@suite-common/sentry": "workspace:*",
"@suite-common/suite-config": "workspace:*",
"@suite-common/suite-constants": "workspace:*",
"@suite-common/suite-types": "workspace:*",
"@suite-common/suite-utils": "workspace:*",
"@suite-common/test-utils": "workspace:*",
"@suite-common/toast-notifications": "workspace:*",
"@suite-common/wallet-config": "workspace:*",
"@suite-common/wallet-constants": "workspace:*",
"@suite-common/wallet-core": "workspace:*",
"@suite-common/wallet-types": "workspace:*",
"@suite-common/wallet-utils": "workspace:*",
"@trezor/analytics": "workspace:*",
"@trezor/blockchain-link": "workspace:*",
"@trezor/coinjoin": "workspace:*",
"@trezor/components": "workspace:*",
"@trezor/connect": "workspace:*",
"@trezor/crypto-utils": "workspace:*",
"@trezor/device-utils": "workspace:*",
"@trezor/dom-utils": "workspace:*",
"@trezor/env-utils": "workspace:*",
"@trezor/ipc-proxy": "workspace:*",
"@trezor/react-utils": "workspace:*",
"@trezor/suite-analytics": "workspace:*",
"@trezor/suite-data": "workspace:*",
"@trezor/suite-desktop-api": "workspace:*",
"@trezor/suite-storage": "workspace:*",
"@trezor/type-utils": "workspace:*",
"@trezor/urls": "workspace:*",
"@trezor/utils": "workspace:*",
"@trezor/validation": "workspace:*",
"bignumber.js": "^9.1.1",
"bs58check": "^3.0.1",
"date-fns": "^2.30.0",
"dropbox": "^10.34.0",
"ethereumjs-util": "^7.1.5",
"file-saver": "^2.0.5",
"framer-motion": "^10.12.16",
"history": "^4.10.1",
"idb": "^7.1.1",
"immer": "9.0.21",
"jws": "^4.0.0",
"lottie-react": "^2.4.0",
"pdfmake": "^0.2.7",
"polished": "^4.2.2",
"qrcode.react": "^3.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-focus-lock": "^2.9.4",
"react-helmet": "^6.1.0",
"react-hook-form": "7.44.3",
"react-intl": "^6.4.4",
"react-markdown": "^8.0.7",
"react-qr-reader": "^2.2.1",
"react-redux": "8.0.7",
"react-router-dom": "^5.2.0",
"react-select": "^5.7.3",
"react-svg": "^16.1.17",
"react-toastify": "^9.1.3",
"react-use": "^17.4.0",
"react-window": "^1.8.9",
"recharts": "^2.7.1",
"redux": "^4.2.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.4.2",
"semver": "^7.5.3",
"styled-components": "^5.3.10",
"trezor-address-validator": "^0.4.3",
"uuid": "^9.0.0",
"web3-utils": "^1.10.0",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@crowdin/cli": "^3.13.0",
"@formatjs/cli": "^6.1.3",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/file-saver": "^2.0.5",
"@types/invity-api": "^1.0.11",
"@types/jws": "^3.2.5",
"@types/pdfmake": "^0.2.2",
"@types/qrcode.react": "^1.0.2",
"@types/react": "18.0.32",
"@types/react-dom": "18.2.6",
"@types/react-qr-reader": "^2.1.4",
"@types/react-test-renderer": "^18.0.0",
"@types/react-window": "^1.8.5",
"@types/redux-logger": "^3.0.9",
"@types/redux-mock-store": "^1.0.3",
"@types/semver": "^7.5.0",
"@types/styled-components": "^5.1.26",
"@types/ua-parser-js": "^0.7.36",
"@types/uuid": "^9.0.2",
"@types/zxcvbn": "^4.4.1",
"jest": "^29.5.0",
"jest-canvas-mock": "^2.5.1",
"jest-environment-jsdom": "^29.5.0",
"jest-watch-typeahead": "0.6.5",
"prettier": "2.8.8",
"react-test-renderer": "^18.2.0",
"redux-devtools-extension": "^2.13.9",
"redux-mock-store": "^1.5.4",
"stylelint": "14.16.1",
"stylelint-config-recommended": "^9.0.0",
"stylelint-config-styled-components": "^0.1.1",
"tsx": "^3.12.7",
"typescript": "4.9.5",
"typescript-styled-plugin": "^0.18.3"
}
}