-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.73 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.73 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
{
"private": true,
"engines": {
"npm": ">=9.0.0",
"node": ">=22.0.0"
},
"overrides": {
"valtio": "^2.1.4"
},
"scripts": {
"dev": "PORT=9991 next dev",
"build": "next build",
"start": "next start",
"format": "npx prettier --write \"{__tests__,components,pages,styles}/**/*.{ts,tsx,js,jsx}\"",
"lint": "next lint && npx prettier --check \"{__tests__,components,pages,styles}/**/*.{ts,tsx,js,jsx}\" && npx tsc --noEmit"
},
"dependencies": {
"@headlessui/react": "^2.2.0",
"@heroicons/react": "^2.2.0",
"@privy-io/react-auth": "2.8.0",
"@privy-io/server-auth": "^1.20.0",
"@reservoir0x/relay-sdk": "^1.6.13",
"@tailwindcss/postcss": "^4.1.3",
"@tanstack/react-query": "^5.75.2",
"@uniswap/sdk-core": "^7.7.0",
"@uniswap/v3-sdk": "^3.25.1",
"axios": "^1.8.4",
"drizzle-orm": "^0.41.0",
"motion": "^12.6.3",
"next": "^15.2.4",
"permissionless": "^0.2.34",
"postgres": "^3.4.5",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-grid-layout": "^1.5.1",
"react-toastify": "^11.0.3",
"tailwind-merge": "^3.1.0",
"tailwindcss": "^4.1.3",
"valtio": "^2.1.4",
"viem": "^2.23.2",
"zustand": "^5.0.3"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.10",
"@tsconfig/next": "^2.0.0",
"@tsconfig/node18": "^18.2.0",
"@tsconfig/strictest": "^2.0.1",
"@types/node": "^18",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.2",
"@types/react-grid-layout": "^1.3.5",
"autoprefixer": "^10.4.7",
"dotenv-cli": "^6.0.0",
"drizzle-kit": "^0.30.6",
"eslint": "^8.23.0",
"eslint-config-next": "^15.2.4",
"postcss": "^8.4.14",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}