-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
218 lines (218 loc) · 7.56 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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
{
"name": "webb-monorepo",
"version": "0.0.0",
"license": "Apache-2.0",
"type": "module",
"private": true,
"engines": {
"node": ">=18.12.x"
},
"scripts": {
"commit": "commit",
"start": "nx run-many --all --target=serve",
"build": "nx run-many --all --target=build",
"lint": "nx run-many --all --target=lint",
"test": "nx run-many --all --target=test",
"build:tangle-dapp": "nx build tangle-dapp",
"build:tangle-cloud": "nx build tangle-cloud",
"build:leaderboard": "nx build testnet-leaderboard",
"build:storybook": "nx build-storybook webb-ui-components",
"start:tangle-dapp": "nx serve tangle-dapp",
"start:tangle-cloud": "nx serve tangle-cloud",
"start:leaderboard": "nx serve testnet-leaderboard",
"start:storybook": "nx storybook webb-ui-components",
"format": "prettier --write \"{libs,apps,tools}/**/*.{ts,js,jsx,tsx}\" ",
"format:check": "prettier --check \"{libs,apps,tools}/**/*.{ts,js,jsx,tsx}\" ",
"pr:check": "prettier --write \"{libs,apps,tools}/**/*.{ts,js,jsx,tsx}\" && yarn lint && yarn build",
"chromatic": "npx chromatic --build-script-name=build:storybook --exit-zero-on-changes",
"generate:release": "node ./tools/release.js",
"codegen": "npx graphql-codegen --config codegen.ts",
"check:codegen": "node ./tools/checkCodegen.js"
},
"resolutions": {
"eslint-plugin-import": "npm:eslint-plugin-import-x@^4.5.0"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@date-fns/utc": "^2.1.0",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@heroicons/react": "^2.2.0",
"@hookform/resolvers": "^3.9.1",
"@hyperlane-xyz/registry": "^6.2.0",
"@hyperlane-xyz/sdk": "^5.7.0",
"@hyperlane-xyz/utils": "^5.7.0",
"@ngneat/falso": "^7.2.0",
"@octokit/request": "^9.1.3",
"@polkadot/api": "^13.2.1",
"@polkadot/apps-config": "^0.146.1",
"@polkadot/extension-dapp": "0.57.1",
"@polkadot/extension-inject": "0.57.1",
"@polkadot/keyring": "^13.2.3",
"@polkadot/react-identicon": "^3.11.3",
"@polkadot/types": "^13.2.1",
"@polkadot/util": "^13.2.3",
"@polkadot/util-crypto": "^13.2.3",
"@radix-ui/react-accordion": "^1.2.2",
"@radix-ui/react-avatar": "^1.1.2",
"@radix-ui/react-collapsible": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-popover": "^1.1.4",
"@radix-ui/react-progress": "^1.1.1",
"@radix-ui/react-radio-group": "^1.2.2",
"@radix-ui/react-scroll-area": "^1.2.2",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-separator": "^1.1.1",
"@radix-ui/react-slider": "^1.2.2",
"@radix-ui/react-switch": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.2",
"@radix-ui/react-tooltip": "^1.1.6",
"@solana/web3.js": "^1.98.0",
"@tanstack/react-query": "^5.62.8",
"@walletconnect/ethereum-provider": "^2.18.0",
"@webb-tools/evm-contract-metadata": "^1.3.0",
"chromatic": "^11.20.2",
"decimal.js": "^10.4.3",
"detect-browser": "^5.3.0",
"ethers": "5.7.2",
"graphql": "^16.10.0",
"js-base64": "^3.7.7",
"lodash": "^4.17.21",
"next": "^14.2.20",
"next-secure-headers": "^2.2.0",
"next-themes": "^0.4.4",
"notistack": "^3.0.1",
"observable-hooks": "^4.2.4",
"react": "^18.3.1",
"react-circular-progressbar": "^2.1.0",
"react-dom": "^18.3.1",
"react-dropzone": "^14.3.5",
"react-hook-form": "^7.54.1",
"react-router": "^7.0.2",
"react-syntax-highlighter": "^15.6.1",
"recharts": "^2.15.0",
"rxjs": "7.8.1",
"swr": "^2.2.5",
"use-local-storage-state": "^19.5.0",
"viem": "^2.21.55",
"wagmi": "^2.14.3",
"zod": "^3.24.1",
"zustand": "^4.5.5"
},
"devDependencies": {
"@0no-co/graphqlsp": "^1.12.16",
"@babel/core": "^7.26.0",
"@chromatic-com/storybook": "^3.2.2",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/eslintrc": "^2.1.4",
"@eslint/js": "~8.57.1",
"@graphql-codegen/cli": "^5.0.3",
"@graphql-codegen/schema-ast": "^4.1.0",
"@next/bundle-analyzer": "^14.2.20",
"@nx/eslint": "20.2.2",
"@nx/eslint-plugin": "20.2.2",
"@nx/jest": "20.2.2",
"@nx/js": "20.3.0",
"@nx/next": "20.2.2",
"@nx/react": "20.2.2",
"@nx/storybook": "20.2.2",
"@nx/vite": "20.2.2",
"@nx/web": "20.2.2",
"@nx/workspace": "20.2.2",
"@storybook/addon-a11y": "8.4.7",
"@storybook/addon-actions": "8.4.7",
"@storybook/addon-essentials": "8.4.7",
"@storybook/addon-interactions": "8.4.7",
"@storybook/addon-themes": "^8.4.7",
"@storybook/blocks": "8.4.7",
"@storybook/channels": "^8.4.7",
"@storybook/components": "^8.4.7",
"@storybook/core-events": "^8.4.7",
"@storybook/core-server": "^8.4.7",
"@storybook/manager-api": "^8.4.7",
"@storybook/nextjs": "^8.4.7",
"@storybook/preview-api": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/theming": "^8.4.7",
"@svgr/webpack": "8.1.0",
"@swc-node/register": "^1.10.9",
"@swc/cli": "~0.5.2",
"@swc/core": "~1.10.1",
"@swc/helpers": "~0.5.15",
"@swc/jest": "~0.2.37",
"@tailwindcss/forms": "^0.5.9",
"@tanstack/match-sorter-utils": "^8.19.4",
"@tanstack/react-table": "^8.20.6",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "16.1.0",
"@types/jest": "29.5.14",
"@types/lodash": "^4.17.13",
"@types/node": "18.19.68",
"@types/react": "18.3.17",
"@types/react-dom": "18.3.5",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"@vitejs/plugin-react-swc": "^3.7.2",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/ui": "^2.1.8",
"@webb-tools/tangle-restaking-types": "^0.1.0",
"@webb-tools/tangle-substrate-types": "^0.9.13",
"autoprefixer": "^10.4.20",
"babel-jest": "29.7.0",
"classnames": "^2.5.1",
"copy-to-clipboard": "^3.3.3",
"date-fns": "^4.1.0",
"dotenv": "^16.4.7",
"esbuild": "^0.24.0",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.20",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import-x": "^4.5.1",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"eslint-plugin-storybook": "^0.11.1",
"eslint-plugin-unused-imports": "^4.1.4",
"framer-motion": "^11.15.0",
"jest": "29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "~25.0.1",
"numbro": "^2.5.0",
"nx": "20.3.2",
"postcss": "8.4.49",
"postcss-import": "^16.1.0",
"postcss-loader": "^8.1.1",
"postcss-nested": "^7.0.2",
"postcss-preset-env": "^10.1.2",
"prettier": "^3.4.2",
"react-is": "^18.3.1",
"rollup": "^4.28.1",
"rollup-plugin-preserve-directives": "^0.4.0",
"storybook": "^8.4.7",
"tailwind-merge": "^2.5.5",
"tailwind-scrollbar": "^3.1.0",
"tailwindcss": "^3.4.16",
"tailwindcss-animate": "^1.0.7",
"tailwindcss-radix": "^3.0.5",
"ts-jest": "29.2.5",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1",
"vite": "~5.4.14",
"vite-plugin-dts": "~4.3.0",
"vite-plugin-node-polyfills": "^0.22.0",
"vite-plugin-svgr": "^4.3.0",
"vite-plugin-wasm": "^3.3.0",
"vitest": "^2.1.8",
"yargs": "^17.7.2"
},
"packageManager": "[email protected]"
}