-
Notifications
You must be signed in to change notification settings - Fork 302
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.51 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.51 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@bitgo/web-demo",
"version": "3.4.1",
"description": "BitGoJS Web demo package",
"repository": {
"type": "git",
"url": "https://github.com/BitGo/BitGoJS.git",
"directory": "modules/web-demo"
},
"license": "MIT",
"author": "BitGo Inc.",
"main": "./dist/src/index.js",
"private": true,
"scripts": {
"build": "yarn tsc --build --incremental --verbose .",
"dev": "webpack serve --mode development --progress --hot --config ./webpack/dev.config.js",
"build-prod": "webpack --mode production --config ./webpack/prod.config.js",
"fmt": "prettier --write .",
"check-fmt": "prettier --check '{src,webpack}/**/*.{tsx,ts,js}'",
"clean": "rm -r ./dist",
"lint": "eslint --quiet .",
"cypress-ui": "cypress open-ct",
"test": "cypress run --component",
"precommit": "yarn lint-staged"
},
"dependencies": {
"@bitgo/abstract-utxo": "^10.22.0",
"@bitgo/key-card": "^0.28.35",
"@bitgo/sdk-api": "^1.76.1",
"@bitgo/sdk-coin-ada": "^4.23.0",
"@bitgo/sdk-coin-algo": "^2.10.0",
"@bitgo/sdk-coin-avaxc": "^6.7.0",
"@bitgo/sdk-coin-avaxp": "^5.7.0",
"@bitgo/sdk-coin-bch": "^2.8.0",
"@bitgo/sdk-coin-bcha": "^2.9.0",
"@bitgo/sdk-coin-bsc": "^22.11.0",
"@bitgo/sdk-coin-bsv": "^2.8.0",
"@bitgo/sdk-coin-btc": "^2.13.0",
"@bitgo/sdk-coin-btg": "^2.8.0",
"@bitgo/sdk-coin-celo": "^6.3.0",
"@bitgo/sdk-coin-cspr": "^2.6.0",
"@bitgo/sdk-coin-dash": "^2.8.0",
"@bitgo/sdk-coin-doge": "^2.8.0",
"@bitgo/sdk-coin-dot": "^4.14.0",
"@bitgo/sdk-coin-eos": "^3.8.0",
"@bitgo/sdk-coin-etc": "^2.7.0",
"@bitgo/sdk-coin-eth": "^25.7.0",
"@bitgo/sdk-coin-ethw": "^20.5.0",
"@bitgo/sdk-coin-hbar": "^2.7.0",
"@bitgo/sdk-coin-ltc": "^3.8.0",
"@bitgo/sdk-coin-near": "^2.17.0",
"@bitgo/sdk-coin-polygon": "^21.7.0",
"@bitgo/sdk-coin-rbtc": "^2.5.0",
"@bitgo/sdk-coin-sol": "^7.18.0",
"@bitgo/sdk-coin-stx": "^3.12.0",
"@bitgo/sdk-coin-sui": "^5.22.0",
"@bitgo/sdk-coin-trx": "^3.13.0",
"@bitgo/sdk-coin-xlm": "^3.9.0",
"@bitgo/sdk-coin-xrp": "^3.13.0",
"@bitgo/sdk-coin-xtz": "^2.10.0",
"@bitgo/sdk-coin-zec": "^2.8.0",
"@bitgo/sdk-core": "^36.37.0",
"@bitgo/sdk-hmac": "^1.9.0",
"@bitgo/sdk-lib-mpc": "^10.10.0",
"@bitgo/sdk-opensslbytes": "^2.1.0",
"@bitgo/sjcl": "^1.1.0",
"@bitgo/statics": "^58.32.0",
"bitgo": "^50.29.0",
"lodash": "^4.17.15",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-json-view-lite": "^2.5.0",
"react-router-dom": "6.3.0",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@cypress/react": "^9.0.0",
"@cypress/webpack-dev-server": "^4.0.0",
"@testing-library/cypress": "^10.0.1",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/styled-components": "5.1.25",
"chai": "^4.3.6",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "9.0.1",
"css-loader": "^5.2.4",
"cypress": "14.0.0",
"eslint-plugin-cypress": "^2.15.1",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^1.6.0",
"postcss": "^8.2.14",
"postcss-loader": "^5.2.0",
"postcss-preset-env": "^7.2.3",
"sass": "^1.32.12",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"ts-loader": "^9.1.2"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"yarn prettier --write",
"yarn eslint --fix"
]
},
"nyc": {
"extension": [
".ts"
]
},
"resolutions": {
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0"
}
}