forked from trezor/trezor-suite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.4 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
{
"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"
},
"dependencies": {
"@trezor/components": "workspace:*",
"@trezor/connect": "workspace:9.0.5",
"@trezor/connect-analytics": "workspace:*",
"@trezor/connect-ui": "workspace:*",
"@trezor/crypto-utils": "workspace:*",
"@trezor/urls": "workspace:*"
},
"devDependencies": {
"@playwright/test": "^1.22.2",
"@trezor/trezor-user-env-link": "workspace:*",
"@types/react": "18.0.25",
"@types/styled-components": "^5.1.25",
"jest": "^26.6.3",
"playwright": "^1.22.2",
"rimraf": "^3.0.2",
"typescript": "4.9.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^4.11.1",
"xvfb-maybe": "^0.2.1"
},
"peerDependencies": {
"react": "18.2.0",
"styled-components": "^5.3.6"
}
}