-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
147 lines (147 loc) · 4.92 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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "aurox-wallet-extension",
"version": "0.0.1",
"description": "Aurox Wallet Extension",
"author": "Aurox",
"license": "MIT",
"main": "index.js",
"scripts": {
"lint": "eslint --ext .tsx,.ts ./src",
"ts": "tsc --noEmit",
"clean": "rimraf dist",
"build": "npm run clean && cross-env TS_NODE_PROJECT=tsconfig.webpack.json webpack build --progress --env production",
"build:analyze": "npm run clean && cross-env TS_NODE_PROJECT=tsconfig.webpack.json webpack build --progress --env production --env analyze",
"serve": "cross-env TS_NODE_PROJECT=tsconfig.webpack.json webpack serve --env mock",
"serve:analyze": "cross-env TS_NODE_PROJECT=tsconfig.webpack.json webpack serve --env mock --env analyze",
"watch": "cross-env TS_NODE_PROJECT=tsconfig.webpack.json webpack watch",
"watch:analyze": "cross-env TS_NODE_PROJECT=tsconfig.webpack.json webpack watch --env analyze",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@aurox/ohlcv-helpers": "0.8.0",
"@aurox/persistent-websocket-connection": "0.4.1",
"@aurox/smart-contract-monitoring": "0.0.5",
"@emotion/react": "11.10.4",
"@emotion/styled": "11.10.4",
"@fontsource/roboto": "4.5.8",
"@ledgerhq/hw-app-eth": "6.29.10",
"@ledgerhq/hw-transport-webhid": "6.27.6",
"@metamask/eth-sig-util": "5.0.2",
"@mui/icons-material": "5.10.9",
"@mui/lab": "5.0.0-alpha.98",
"@mui/material": "5.10.17",
"@mui/styles": "5.10.16",
"@mui/x-data-grid": "5.17.8",
"@segment/analytics-next": "1.51.0",
"@sentry/react": "7.16.0",
"@sentry/tracing": "7.16.0",
"@solana/web3.js": "1.66.2",
"@trezor/connect-web": "9.0.3",
"autobahn": "20.9.2",
"axios": "0.27.2",
"bip39": "3.0.4",
"bn.js": "5.2.1",
"bs58": "5.0.0",
"clsx": "1.2.1",
"decimal.js": "10.4.2",
"dompurify": "2.4.0",
"ed25519-hd-key": "1.3.0",
"ethereum-multicall": "2.15.0",
"ethers": "5.7.2",
"framer-motion": "7.0.0",
"fuse.js": "6.6.2",
"history": "5.3.0",
"immer": "9.0.16",
"lightweight-charts": "3.8.0",
"lodash": "4.17.21",
"normalize.css": "8.0.1",
"numbro": "2.3.6",
"pocket-universe-js": "0.0.19",
"psl": "1.9.0",
"qrcode.react": "3.1.0",
"qs": "6.11.0",
"randomcolor": "0.6.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-number-format": "5.1.0",
"react-router-dom": "6.4.2",
"react-string-replace": "1.1.0",
"react-swipeable-views": "0.14.0",
"react-use": "17.4.0",
"react-window": "1.8.7",
"react-window-infinite-loader": "1.0.8",
"tiny-typed-emitter": "2.1.0",
"trezor-connect": "8.2.11",
"tslib": "2.4.0",
"tweetnacl": "1.0.3",
"use-clipboard-copy": "0.2.0",
"uuid": "9.0.0",
"validator": "13.7.0",
"use-nft": "0.12.0"
},
"devDependencies": {
"@pmmmwh/react-refresh-webpack-plugin": "0.5.8",
"@simbathesailor/use-what-changed": "2.0.0",
"@svgr/webpack": "6.5.0",
"@types/autobahn": "20.9.1",
"@types/chrome": "0.0.199",
"@types/circular-dependency-plugin": "5.0.5",
"@types/dompurify": "2.3.4",
"@types/dotenv-webpack": "7.0.3",
"@types/html-webpack-plugin": "3.2.6",
"@types/jest": "29.2.0",
"@types/lodash": "4.14.186",
"@types/node": "18.11.6",
"@types/psl": "1.1.0",
"@types/qrcode.react": "1.0.2",
"@types/randomcolor": "0.5.6",
"@types/react": "18.0.23",
"@types/react-dom": "18.0.7",
"@types/react-swipeable-views": "0.13.1",
"@types/react-window": "1.8.5",
"@types/react-window-infinite-loader": "1.0.6",
"@types/uuid": "8.3.4",
"@types/validator": "13.7.9",
"@types/webpack-bundle-analyzer": "4.6.0",
"@typescript-eslint/eslint-plugin": "5.41.0",
"@typescript-eslint/parser": "5.41.0",
"babel-plugin-direct-import": "1.0.0",
"babel-plugin-import": "1.13.5",
"circular-dependency-plugin": "5.2.2",
"copy-webpack-plugin": "11.0.0",
"cross-env": "7.0.3",
"css-loader": "6.7.1",
"dotenv-webpack": "8.0.1",
"eslint": "8.26.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.31.10",
"eslint-plugin-react-hooks": "4.6.0",
"fork-ts-checker-webpack-plugin": "7.2.13",
"handlebars": "4.7.7",
"handlebars-loader": "1.7.2",
"html-webpack-plugin": "5.5.0",
"jest": "29.2.2",
"node-polyfill-webpack-plugin": "2.0.1",
"postcss": "8.4.18",
"postcss-loader": "7.0.1",
"prettier": "2.7.1",
"raw-loader": "4.0.2",
"react-refresh": "0.14.0",
"react-refresh-typescript": "2.0.7",
"rimraf": "3.0.2",
"style-loader": "3.3.1",
"ts-jest": "29.0.3",
"ts-loader": "9.4.1",
"ts-node": "10.9.1",
"type-fest": "3.1.0",
"typescript": "4.8.4",
"url-loader": "4.1.1",
"webpack": "5.74.0",
"webpack-bundle-analyzer": "4.7.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.11.1"
}
}