forked from builders-garden/miniapp-next-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.33 KB
/
package.json
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
{
"name": "app-router-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"debug": "frames",
"postinstall": "prisma generate",
"prisma:generate": "prisma generate",
"prisma:init": "prisma init"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@farcaster/auth-client": "^0.3.0",
"@farcaster/auth-kit": "^0.6.0",
"@farcaster/frame-node": "^0.0.13",
"@farcaster/frame-sdk": "^0.0.26",
"@frames.js/debugger": "^0.4.1",
"@libsql/client": "^0.14.0",
"@mui/material": "^6.4.2",
"@prisma/adapter-libsql": "^6.3.1",
"@prisma/client": "^6.3.1",
"@tanstack/react-query": "^5.64.2",
"ethers": "5.x",
"framer-motion": "^12.0.5",
"jose": "^5.9.6",
"ky": "^1.7.4",
"lucide-react": "^0.474.0",
"next": "14.2.6",
"next-auth": "^4.24.7",
"posthog-js": "^1.210.2",
"posthog-node": "^4.4.1",
"react": "^18",
"react-dom": "^18",
"viem": "^2.22.14"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.6",
"postcss": "^8",
"prisma": "^6.2.1",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}