forked from trezor/trezor-suite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.34 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
{
"name": "@trezor/suite-desktop-ui",
"version": "1.0.0",
"private": true,
"license": "See LICENSE.md in repo root",
"sideEffects": false,
"main": "src/index",
"scripts": {
"type-check": "tsc --build tsconfig.json",
"type-check:watch": "yarn type-check -- --watch",
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
"test:unit": "jest -c ../../jest.config.base.js --passWithNoTests"
},
"dependencies": {
"@sentry/electron": "^4.6.0",
"@suite-common/formatters": "workspace:*",
"@suite-common/sentry": "workspace:*",
"@trezor/components": "workspace:*",
"@trezor/connect": "workspace:*",
"@trezor/ipc-proxy": "workspace:*",
"@trezor/suite": "workspace:*",
"@trezor/suite-analytics": "workspace:*",
"@trezor/suite-desktop-api": "workspace:*",
"@trezor/urls": "workspace:*",
"@trezor/utils": "workspace:*",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "^8.0.7",
"react-redux": "8.0.7",
"react-router-dom": "^5.2.0",
"styled-components": "^5.3.10"
},
"devDependencies": {
"@types/react": "18.0.32",
"@types/react-dom": "18.2.6",
"@types/styled-components": "^5.1.26",
"jest": "^26.6.3",
"typescript": "4.9.5"
}
}