-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.98 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.98 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
{
"name": "seamless-protocol-v2-app",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "bunx --bun vite",
"compile": "hardhat compile",
"build": "bunx @tanstack/router-cli generate --config vite.config.ts && tsc -b && bunx --bun vite build",
"preview": "bunx --bun vite preview",
"check": "bunx --bun biome check . && bunx --bun tsc -b --noEmit",
"check:fix": "bunx --bun biome check --write . && bunx --bun tsc -b --noEmit",
"format": "bunx --bun biome format --write .",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:unit": "vitest -c vitest.unit.config.ts --run tests/unit",
"test:unit:watch": "vitest watch tests/unit",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:integration": "TEST_CHAIN=mainnet bun scripts/run-tests.ts integration --backend=anvil -- tests/integration/leverage-tokens",
"test:integration:raw": "vitest -c vitest.integration.config.ts --run tests/integration",
"test:integration:new": "bunx --bun vitest --run -c vitest.integration-new.config.ts",
"anvil:base": "bash ./scripts/anvil-base.sh",
"anvil:mainnet": "bash ./scripts/anvil-mainnet.sh",
"test:e2e": "TEST_CHAIN=mainnet bun scripts/run-tests.ts e2e --chain mainnet --backend=anvil -- tests/e2e/mainnet-tokens-mint.spec.ts tests/e2e/mainnet-tokens-redeem.spec.ts",
"test:integration:tenderly": "TEST_CHAIN=mainnet bun scripts/run-tests.ts integration --backend=tenderly -- tests/integration/leverage-tokens",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"wagmi": "wagmi generate"
},
"dependencies": {
"@lifi/wallet-management": "^3.20.1",
"@lifi/widget": "^3.37.0",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tooltip": "^1.2.8",
"@rainbow-me/rainbowkit": "^2.2.10",
"@seamless-defi/defi-sdk": "^0.0.8",
"@sentry/react": "^10.30.0",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/react-query": "^5.90.12",
"@tanstack/react-query-devtools": "^5.91.1",
"@tanstack/react-router": "1.128.0",
"@tanstack/react-router-devtools": "1.128.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.23.26",
"lucide-react": "^0.539.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-ga4": "^2.1.0",
"recharts": "^3.6.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"viem": "^2.42.1",
"wagmi": "^2.19.5",
"zod": "^4.2.0"
},
"devDependencies": {
"@biomejs/biome": "2.2.3",
"@chromatic-com/storybook": "^4.1.3",
"@morpho-org/test-wagmi": "^2.0.8",
"@playwright/test": "^1.57.0",
"@storybook/addon-a11y": "^9.1.16",
"@storybook/addon-docs": "^9.1.16",
"@storybook/addon-essentials": "^9.0.0-alpha.12",
"@storybook/addon-links": "^9.1.16",
"@storybook/addon-onboarding": "^9.1.16",
"@storybook/addon-vitest": "^9.1.16",
"@storybook/builder-vite": "^9.1.16",
"@storybook/react-vite": "^9.1.16",
"@tanstack/router-cli": "1.128.0",
"@tanstack/router-plugin": "1.128.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@types/node": "^24.10.4",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/browser": "3.2.4",
"@vitest/coverage-v8": "3.2.4",
"@vitest/ui": "^3.2.4",
"@wagmi/cli": "^2.8.0",
"dotenv": "^17.2.3",
"jsdom": "^26.1.0",
"playwright": "^1.57.0",
"storybook": "^9.1.16",
"tw-animate-css": "^1.4.0",
"typescript": "~5.8.3",
"undici": "^7.18.2",
"vite": "^7.3.0",
"vitest": "^3.2.4"
},
"volta": {
"node": "20.19.4"
}
}