add initial demo app

This commit is contained in:
horsefacts
2024-11-23 23:19:40 -05:00
committed by lucas-neynar
parent 5143ab4ce4
commit 33eea440b3
22 changed files with 5723 additions and 0 deletions

30
package.json Normal file
View File

@@ -0,0 +1,30 @@
{
"name": "frames-v2-demo",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@farcaster/frame-sdk": "^0.0.2",
"@tanstack/react-query": "^5.61.0",
"next": "15.0.3",
"react": "19.0.0-rc-66855b96-20241106",
"react-dom": "19.0.0-rc-66855b96-20241106",
"viem": "2.x",
"wagmi": "^2.13.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "15.0.3",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}