-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 4.34 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 4.34 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"catalog": {
"@graphql-typed-document-node/core": "^3.2.0",
"@pendulum-chain/api": "^1.1.1",
"@pendulum-chain/api-solang": "^0.7.3",
"@pendulum-chain/types": "^1.1.1",
"@polkadot/api": "^16.4.6",
"@polkadot/api-augment": "^16.4.6",
"@polkadot/api-base": "^16.4.6",
"@polkadot/api-contract": "^16.4.6",
"@polkadot/api-derive": "^16.4.6",
"@polkadot/keyring": "^13.5.6",
"@polkadot/rpc-augment": "^16.4.6",
"@polkadot/rpc-core": "^16.4.6",
"@polkadot/rpc-provider": "^16.4.6",
"@polkadot/types": "^16.4.6",
"@polkadot/types-augment": "^16.4.6",
"@polkadot/types-codec": "^16.4.6",
"@polkadot/types-create": "^16.4.6",
"@polkadot/types-known": "^16.4.6",
"@polkadot/util": "^13.5.6",
"@polkadot/util-crypto": "^13.5.6",
"@scure/bip39": "2.0.1",
"@storybook/react": "^9.1.16",
"@supabase/supabase-js": "^2.80.0",
"@types/big.js": "^6.0.2",
"@types/node": "^22.7.5",
"@vortexfi/shared": "workspace:*",
"@wagmi/core": "^2.22.1",
"@walletconnect/types": "^2.23.0",
"@walletconnect/utils": "^2.23.0",
"bcrypt": "5.1.1",
"big.js": "^7.0.1",
"clsx": "^1.2.1",
"cobe": "^2.0.1",
"concurrently": "^9.1.2",
"prettier": "^2.8.4",
"stellar-sdk": "^13.1.0",
"tsup": "^8.4.0",
"typescript": "^5.8.2",
"viem": "^2.37.9",
"wagmi": "^2.19.1",
"web3": "4.16.0",
"winston": "3.18.3"
},
"dependencies": {
"big.js": "^7.0.1",
"husky": "^9.1.7",
"lint-staged": "^16.1.0",
"numora-react": "^3.0.3"
},
"devDependencies": {
"@biomejs/biome": "2.0.0",
"@types/bun": "^1.3.1",
"concurrently": "catalog:",
"typescript": "catalog:"
},
"engines": {
"node": ">=18"
},
"lint-staged": {
"*": [
"biome check --write --no-errors-on-unmatched --formatter-enabled=true --linter-enabled=false"
],
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --write --no-errors-on-unmatched --formatter-enabled=true --linter-enabled=false"
]
},
"name": "vortex-monorepo",
"overrides": {
"@fastify/busboy": "3.2.0",
"@polkadot/api": "^16.4.6",
"@polkadot/api-augment": "^16.4.6",
"@polkadot/api-base": "^16.4.6",
"@polkadot/api-contract": "^16.4.6",
"@polkadot/api-derive": "^16.4.6",
"@polkadot/keyring": "^13.5.6",
"@polkadot/rpc-augment": "^16.4.6",
"@polkadot/rpc-core": "^16.4.6",
"@polkadot/rpc-provider": "^16.4.6",
"@polkadot/types": "^16.4.6",
"@polkadot/types-augment": "^16.4.6",
"@polkadot/types-codec": "^16.4.6",
"@polkadot/types-create": "^16.4.6",
"@polkadot/types-known": "^16.4.6",
"@polkadot/util": "^13.5.6",
"@polkadot/util-crypto": "^13.5.6",
"adm-zip": "0.5.2",
"axios": "^1.15.0",
"big.js": "^7.0.1",
"handlebars": "4.7.9",
"lodash": "4.18.0",
"node-forge": "1.4.0",
"path-to-regexp": "8.4.0",
"tar": "7.5.11",
"tmp": "0.2.4",
"undici": "6.24.0",
"viem": "^2.37.9",
"wagmi": "^2.17.5"
},
"packageManager": "bun@1.3.1",
"private": true,
"scripts": {
"build": "bun run build:shared && bun run build:sdk && bun run build:frontend && bun run build:backend",
"build:backend": "bun run --cwd apps/api build",
"build:frontend": "bun run --cwd apps/frontend build",
"build:sdk": "bun run --cwd packages/sdk build",
"build:shared": "bun run --cwd packages/shared build",
"compile:contracts:relayer": "bun run --cwd contracts/relayer compile",
"dev": "concurrently -n 'shared,backend,frontend' -c '#ffa500,#007755,#2f6da3' 'cd packages/shared && bun run dev' 'cd apps/api && bun dev' 'cd apps/frontend && bun dev'",
"dev:backend": "bun run --cwd apps/api dev",
"dev:contracts:relayer": "bun run --cwd contracts/relayer node",
"dev:frontend": "bun run --cwd apps/frontend dev",
"dev:rebalancer": "bun run --cwd apps/rebalancer dev",
"format": "biome check --write --unsafe --no-errors-on-unmatched",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"prepare": "husky",
"serve:backend": "bun run --cwd apps/api serve",
"serve:frontend": "bun run --cwd apps/frontend preview",
"test:contracts:relayer": "bun run --cwd contracts/relayer test",
"typecheck": "bunx tsc",
"verify": "biome check --no-errors-on-unmatched"
},
"workspaces": [
"apps/*",
"packages/*",
"contracts/*"
]
}