forked from trezor/trezor-suite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.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
{
"name": "@trezor/connect-iframe",
"version": "9.0.0",
"private": true,
"scripts": {
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
"build": "rimraf build && TS_NODE_PROJECT=\"tsconfig.json\" yarn webpack --config ./webpack/prod.webpack.config.ts",
"___NOTE__": "iframe build is one of the prerequisites of suite-web. build:lib script provides it together with other libraries",
"build:lib": "yarn build",
"type-check": "tsc --build tsconfig.json",
"test:unit": "jest -c ../../jest.config.base.js"
},
"dependencies": {
"@trezor/connect": "workspace:*",
"@trezor/connect-common": "workspace:*"
},
"devDependencies": {
"@trezor/env-utils": "workspace:*",
"copy-webpack-plugin": "^11.0.0",
"html-webpack-plugin": "^5.5.3",
"jest": "^26.6.3",
"rimraf": "^5.0.1",
"terser-webpack-plugin": "^5.3.9",
"typescript": "4.9.5",
"webpack": "^5.87.0",
"webpack-cli": "^5.1.4",
"worker-loader": "^3.0.8"
},
"nx": {
"build": {
"outputs": [
"./build"
]
}
}
}