-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.29 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.29 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
{
"name": "own-frontend",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=22 <23"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint src --ext .ts,.tsx,.js,.jsx",
"lint:fix": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --ci --coverage --runInBand",
"test:coverage": "jest --coverage",
"type-check": "tsc --noEmit",
"type-check:watch": "tsc --noEmit --watch",
"test:e2e": "echo \"No E2E tests configured\" && exit 0"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-navigation-menu": "^1.2.14",
"@radix-ui/react-slot": "^1.2.3",
"@rainbow-me/rainbowkit": "^2.2.5",
"@supabase/supabase-js": "^2.77.0",
"@tanstack/react-query": "^5.66.0",
"@uniswap/permit2-sdk": "^1.4.0",
"@uniswap/sdk-core": "^7.7.2",
"@uniswap/universal-router-sdk": "^4.19.7",
"@uniswap/v4-sdk": "^1.21.4",
"canvas-confetti": "^1.9.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.460.0",
"next": ">=15.5.8",
"posthog-js": "^1.313.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.63.0",
"react-hot-toast": "^2.5.1",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"viem": "^2.31.0",
"wagmi": "^2.14.10",
"zod": "^3.25.76"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/canvas-confetti": "^1.9.0",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "15.0.3",
"jest": "^30.0.4",
"jest-environment-jsdom": "^30.0.4",
"mockdate": "^3.0.5",
"postcss": "^8",
"supabase": "^2.54.11",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}