forked from trezor/trezor-suite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.68 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
{
"name": "@suite-common/message-system",
"version": "1.0.0",
"private": true,
"license": "See LICENSE.md in repo root",
"sideEffects": false,
"main": "src/index",
"scripts": {
"build:lib": "yarn msg-system-types && yarn sign-config",
"msg-system-types": "tsx ./scripts/generate-types.ts",
"validate-config": "tsx ./scripts/validate-config.ts",
"sign-config": "tsx ./scripts/sign-config.ts",
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
"test:unit": "jest -c ../../jest.config.base.js --passWithNoTests",
"type-check": "tsc --build"
},
"dependencies": {
"@reduxjs/toolkit": "1.9.5",
"@suite-common/redux-utils": "workspace:*",
"@suite-common/suite-types": "workspace:*",
"@suite-common/suite-utils": "workspace:*",
"@suite-common/wallet-config": "workspace:*",
"@trezor/connect": "workspace:*",
"@trezor/device-utils": "workspace:*",
"@trezor/env-utils": "workspace:*",
"@trezor/utils": "workspace:*",
"ajv": "^8.12.0",
"fs-extra": "^11.1.1",
"json-schema-to-typescript": "^13.0.2",
"jws": "^4.0.0",
"proxy-memoize": "2.0.2",
"semver": "^7.5.3"
},
"devDependencies": {
"@suite-common/test-utils": "workspace:*",
"@types/fs-extra": "^11.0.1",
"jest": "^26.6.3",
"tsx": "^3.12.7",
"typescript": "4.9.5"
},
"nx": {
"targets": {
"build:lib": {
"outputs": [
"./files",
"{workspaceRoot}/suite-common/suite-types/src/messageSystem.ts"
]
}
}
}
}