forked from trezor/trezor-suite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.96 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
{
"name": "@trezor/suite-build",
"version": "1.0.0",
"author": "Trezor <[email protected]>",
"private": true,
"keywords": [
"Trezor",
"suite-build"
],
"license": "SEE LICENSE IN LICENSE.md",
"description": "trezor suite build",
"scripts": {
"base": "TS_NODE_PROJECT=\"tsconfig.json\" webpack --config ./webpack.config.ts",
"web": "PROJECT=web yarn run base",
"dev:web": "yarn run web",
"build:web": "NODE_ENV=production yarn run web",
"desktop": "PROJECT=desktop yarn run base",
"dev:desktop": "yarn run desktop",
"build:desktop": "NODE_ENV=production yarn run desktop",
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
"type-check": "tsc --build tsconfig.json",
"type-check:watch": "yarn type-check -- --watch"
},
"dependencies": {
"@suite-common/suite-config": "workspace:*",
"@trezor/suite": "workspace:*",
"babel-loader": "^9.1.2",
"babel-plugin-styled-components": "^2.1.3",
"copy-webpack-plugin": "^11.0.0",
"crypto-browserify": "^3.12.0",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"html-webpack-plugin": "^5.5.3",
"raw-loader": "^4.0.2",
"stream-browserify": "^3.0.0",
"style-loader": "^3.3.3",
"terser-webpack-plugin": "^5.3.9",
"webpack": "^5.87.0",
"webpack-bundle-analyzer": "^4.9.0",
"webpack-merge": "^5.9.0",
"webpack-nano": "^1.1.1",
"webpack-plugin-serve": "^1.6.0",
"worker-loader": "^3.0.8"
},
"devDependencies": {
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"@sentry/webpack-plugin": "^2.3.0",
"@types/copy-webpack-plugin": "^10.1.0",
"@types/webpack-bundle-analyzer": "^4.6.0",
"@types/webpack-plugin-serve": "^1.4.2",
"jest": "^26.6.3",
"react-refresh": "^0.14.0",
"typescript": "4.9.5"
}
}