forked from trezor/trezor-suite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.83 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
{
"name": "@trezor/suite-data",
"version": "1.0.0",
"private": true,
"author": "Trezor <[email protected]>",
"keywords": [
"Trezor",
"trezor-data"
],
"license": "SEE LICENSE IN LICENSE.md",
"description": "Trezor data",
"scripts": {
"build:lib": "yarn browser-detection && yarn guide-pull-content",
"browser-detection": "webpack --config ./browser-detection.webpack.ts",
"guide-pull-content": "tsx ./src/guide/index.ts",
"update-coinjoin-middleware": "./files/bin/coinjoin/update.sh",
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
"type-check": "tsc --build tsconfig.json"
},
"dependencies": {
"@suite-common/suite-types": "workspace:*",
"@suite-common/suite-utils": "workspace:*",
"@trezor/env-utils": "workspace:*",
"@trezor/urls": "workspace:*",
"@trezor/utils": "workspace:*"
},
"devDependencies": {
"@mobily/ts-belt": "^3.13.1",
"@types/fs-extra": "^11.0.1",
"autoprefixer": "^10.4.14",
"babel-loader": "^9.1.2",
"css-loader": "^6.8.1",
"fs-extra": "^11.1.1",
"jest": "^26.6.3",
"postcss-loader": "^7.3.3",
"postcss-modules-extract-imports": "^3.0.0",
"postcss-modules-local-by-default": "^4.0.3",
"postcss-modules-scope": "^3.0.0",
"postcss-modules-values": "^4.0.0",
"simple-git": "^3.19.0",
"style-loader": "^3.3.3",
"tsx": "^3.12.7",
"typescript": "4.9.5",
"webpack": "^5.87.0",
"webpack-cli": "^5.1.4"
},
"nx": {
"targets": {
"build:lib": {
"outputs": [
"./tmp",
"./files/browser-detection",
"./files/guide"
]
}
}
}
}