forked from franco-chan/OneKey-Desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 4.16 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
{
"name": "@trezor/suite",
"version": "21.3.0",
"private": true,
"scripts": {
"lint": "yarn lint:styles && yarn lint:js",
"lint:js": "eslint '**/*{.ts,.tsx}'",
"lint:styles": "npx stylelint './src/**/*{.ts,.tsx}'",
"translations:extract": "yarn -s formatjs extract src/support/messages.ts --format crowdin > translations/master.json && node ../translations-manager/lib/cli.js build-csv",
"translations:upload": "yarn translations:extract && node ../translations-manager/lib/cli.js upload",
"translations:download": "yarn ttm build-translations && sleep 5 && yarn ttm export-translations",
"translations:unused": "node ../translations-manager/lib/cli.js find-unused-messages --messages ./translations/master.json --src ./src --src ../suite-web/pages --src ../suite-desktop/pages",
"type-check": "tsc --project tsconfig.json",
"test": "run-s test:*",
"test:unit": "jest",
"test-unit:watch": "jest -o --watch",
"test-health": "jest -c jest.config.health.js"
},
"dependencies": {
"@onekeyhq/connect": "8.2.4-extended",
"@trezor/components": "^1.0.0",
"@trezor/suite-data": "21.3.0",
"@trezor/suite-storage": "21.3.0",
"bignumber.js": "^9.0.1",
"date-fns": "^2.16.1",
"date-fns-tz": "^1.0.12",
"dropbox": "5.1.0",
"ethereumjs-tx": "^2.1.2",
"ethereumjs-util": "^6.0.0",
"file-saver": "^2.0.5",
"framer-motion": "^3.2.1",
"google-auth-library": "6.0.6",
"immer": "^8.0.0",
"pako": "^1.0.11",
"pdfmake": "^0.1.69",
"qs": "^6.9.4",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-focus-lock": "^2.5.0",
"react-hook-form": "6.14.1",
"react-hotkeys-hook": "^3.0.3",
"react-intl": "^5.10.19",
"react-markdown": "^5.0.3",
"react-native-web": "^0.14.9",
"react-qr-reader": "^2.2.1",
"react-qr-svg": "^2.3.0",
"react-redux": "^7.2.2",
"react-text-truncate": "0.16.0",
"react-toastify": "^6.2.0",
"react-use": "15.3.8",
"react-window": "^1.8.6",
"recharts": "2.0.0-beta.1",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"styled-components": "5.1.1",
"trezor-address-validator": "^0.3.22",
"uuid": "^8.3.2",
"web3": "^1.3.5",
"web3-utils": "^1.2.6",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@formatjs/cli": "^3.0.5",
"@next/bundle-analyzer": "^10.0.5",
"@testing-library/dom": "^7.29.2",
"@testing-library/react": "^11.2.3",
"@testing-library/react-hooks": "^4.0.0",
"@testing-library/user-event": "^12.6.0",
"@trezor/translations-manager": "^1.0.0",
"@types/file-saver": "^2.0.1",
"@types/invity-api": "^1.0.2",
"@types/pako": "^1.0.1",
"@types/pdfmake": "^0.1.16",
"@types/qs": "^6.9.5",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-qr-reader": "^2.1.3",
"@types/react-redux": "^7.1.7",
"@types/react-test-renderer": "^17.0.0",
"@types/react-text-truncate": "0.14.0",
"@types/react-window": "^1.8.2",
"@types/recharts": "^1.8.18",
"@types/redux-logger": "^3.0.8",
"@types/redux-mock-store": "^1.0.2",
"@types/styled-components": "^5.1.7",
"@types/uuid": "^8.3.0",
"@types/zxcvbn": "^4.4.0",
"canvas": "^2.6.1",
"core-js-bundle": "3.8.2",
"cross-env": "^7.0.3",
"fake-indexeddb": "^3.1.2",
"jest-watch-typeahead": "^0.6.1",
"node-fetch": "^2.6.1",
"react-test-renderer": "^17.0.1",
"recursive-readdir-sync": "^1.0.6",
"redux-devtools-extension": "^2.13.8",
"redux-mock-store": "^1.5.4",
"regenerator-runtime": "0.13.7",
"stylelint": "^13.8.0",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-styled-components": "^0.1.1",
"typescript-styled-plugin": "^0.15.0"
}
}