-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.47 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.47 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
{
"name": "startupchain",
"version": "0.3",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src",
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx src --fix",
"test": "vitest",
"test:unit": "vitest run --exclude='**/**.integration.test.ts'",
"check": "tsc --noEmit && eslint --ext .js,.jsx,.ts,.tsx src && vitest run --exclude='**/**.integration.test.ts'"
},
"resolutions": {
"thread-stream": "3.1.0",
"pino": "10.0.0"
},
"dependencies": {
"@ai-sdk/google": "^2.0.32",
"@ai-sdk/react": "^2.0.45",
"@ensdomains/ensjs": "^4.2.0",
"@ensdomains/thorin": "^0.6.50",
"@privy-io/node": "^0.5.0",
"@privy-io/react-auth": "^3.8.0",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.8",
"@safe-global/api-kit": "^4.0.1",
"@safe-global/protocol-kit": "^6.1.2",
"@solana-program/system": "^0.10.0",
"@solana-program/token": "^0.9.0",
"@solana/kit": "^5.0.0",
"@tailwindcss/postcss": "^4.1.11",
"@tanstack/react-query": "^5.90.10",
"@vercel/analytics": "^1.5.0",
"@vercel/speed-insights": "^1.2.0",
"ai": "^5.0.44",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"jose": "^6.1.2",
"lucide-react": "^0.555.0",
"motion": "^12.23.24",
"next": "^16.0.3",
"p-limit": "^7.2.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-transition-state": "1.1.5",
"styled-components": "^6.1.19",
"tailwind-merge": "^3.3.1",
"usehooks-ts": "^3.1.1",
"viem": "^2.40.2",
"wagmi": "^3.0.1",
"zod": "^4.1.9",
"zustand": "^5.0.9"
},
"devDependencies": {
"@next/bundle-analyzer": "^15.5.3",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^22.7.4",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.56.0",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"prettier": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.6.14",
"tw-animate-css": "^1.3.6",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}