forked from trezor/trezor-suite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.74 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
{
"name": "@trezor/connect-popup",
"version": "9.0.0",
"private": true,
"sideEffects": false,
"scripts": {
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
"type-check": "tsc --build",
"dev": "rimraf build && TS_NODE_PROJECT=\"tsconfig.json\" yarn webpack --config ./webpack/dev.webpack.config.ts",
"build": "rimraf build && TS_NODE_PROJECT=\"tsconfig.json\" yarn webpack --config ./webpack/prod.webpack.config.ts",
"test:e2e": "yarn xvfb-maybe -- playwright test --config=./e2e/playwright.config.ts",
"test:unit": "jest"
},
"dependencies": {
"@trezor/connect": "workspace:*",
"@trezor/connect-analytics": "workspace:*",
"@trezor/connect-common": "workspace:*",
"@trezor/connect-ui": "workspace:*",
"@trezor/crypto-utils": "workspace:*",
"@trezor/device-utils": "workspace:*",
"@trezor/urls": "workspace:*",
"eth-phishing-detect": "^1.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@playwright/test": "^1.35.1",
"@trezor/node-utils": "workspace:*",
"@trezor/trezor-user-env-link": "workspace:*",
"@trezor/utils": "workspace:*",
"@types/react": "18.0.32",
"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",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.9.0",
"webpack-plugin-serve": "^1.6.0",
"xvfb-maybe": "^0.2.1"
},
"peerDependencies": {
"react": "18.2.0",
"styled-components": "^5.3.10"
}
}