-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.46 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
{
"name": "@betfinio/app",
"private": true,
"version": "0.0.0",
"scripts": {
"prebuild": "graphclient build",
"build": "rsbuild build",
"check": "biome check --write",
"dev": "bun run build:schema:dev && rsbuild dev --open",
"prod": "bun run build:schema:prod && rsbuild dev --env-mode production --open",
"local": "bun run build:schema:local && rsbuild dev --env-mode localhost --open",
"format": "biome format --write",
"preview": "rsbuild preview",
"build:schema:local": "dotenv -e .env.localhost.local -- graphclient build",
"build:schema:dev": "dotenv -e .env.development.local -- graphclient build",
"build:schema:prod": "dotenv -e .env.production.local -- graphclient build",
"secret:dev": "bun run secret.ts -- development dev",
"secret:prod": "bun run secret.ts -- production prod/network"
},
"dependencies": {
"@betfinio/abi": "^2.4.0",
"@betfinio/components": "^1.6.0",
"@betfinio/ui": "^1.0.11",
"@module-federation/enhanced": "^0.8.12",
"@privy-io/react-auth": "^2.4.5",
"@privy-io/wagmi": "^1.0.3",
"@supabase/supabase-js": "^2.48.1",
"@tanstack/react-query": "^5.66.7",
"@tanstack/react-router": "^1.106.0",
"@swipelux/onramp-react": "^1.0.3",
"@tanstack/react-table": "^8.21.2",
"@tawk.to/tawk-messenger-react": "^2.0.2",
"@types/js-cookie": "^3.0.6",
"consola": "^3.4.0",
"framer-motion": "^11.18.2",
"i18next": "^24.2.2",
"i18next-browser-languagedetector": "^8.0.4",
"js-cookie": "^3.0.5",
"lucide-react": "^0.461.0",
"luxon": "^3.5.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-ga4": "^2.1.0",
"react-i18next": "^15.4.1",
"react-responsive": "^10.0.0",
"react-ts-tradingview-widgets": "^1.2.8",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"viem": "^2.23.5",
"wagmi": "^2.14.12"
},
"overrides": {
"@metamask/sdk": "0.30.0"
},
"devDependencies": {
"@aws-sdk/client-secrets-manager": "^3.750.0",
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@graphprotocol/client-cli": "^3.0.7",
"@module-federation/rsbuild-plugin": "^0.8.12",
"@rsbuild/core": "^1.2.11",
"@rsbuild/plugin-node-polyfill": "^1.3.0",
"@rsbuild/plugin-react": "^1.1.1",
"@rsbuild/plugin-sass": "^1.2.2",
"@types/bun": "^1.2.4",
"@types/luxon": "^3.4.2",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"dotenv-cli": "^7.4.4",
"lefthook": "^1.11.2",
"tailwind-merge": "^2.6.0",
"typescript": "^5.7.3"
}
}