forked from nestorbonilla/members-only
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1011 Bytes
/
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
{
"name": "membersonly",
"version": "0.0.1",
"license": "MIT",
"author": "Nestor Bonilla",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"deploy": "vercel",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@neynar/nodejs-sdk": "^1.37.3",
"@supabase/ssr": "^0.4.0",
"@supabase/supabase-js": "^2.43.5",
"@unlock-protocol/contracts": "^0.0.27",
"@unlock-protocol/networks": "^0.0.23",
"dotenv": "^16.4.5",
"frog": "^0.14.4",
"hono": "^4",
"next": "14.1.0",
"react": "^18",
"react-dom": "^18",
"viem": "^2.16.2"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.19",
"postcss": "^8.4.38",
"prettier": "^3.3.2",
"tailwindcss": "^3.4.4",
"typescript": "^5",
"vercel": "^32.4.1"
}
}