-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
89 lines (89 loc) · 2.39 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
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
80
81
82
83
84
85
86
87
88
89
{
"name": "boss-token",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=20.15.1"
},
"scripts": {
"dev": "next dev",
"dev:frame": "node ./scripts/dev-script.js",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --write .",
"types": "tsc --noEmit",
"supabase-types": "supabase gen types typescript --project-id \"$SUPABASE_BOSS_PROJECT\" --schema public > src/db/database.types.ts"
},
"dependencies": {
"@airstack/node": "0.0.6",
"@duneanalytics/client-sdk": "^0.2.1",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@fontsource-variable/bricolage-grotesque": "^5.0.6",
"@fontsource-variable/inter": "^5.0.18",
"@fontsource/inter": "^5.0.18",
"@mui/joy": "^5.0.0-beta.36",
"@openzeppelin/merkle-tree": "^1.0.6",
"@supabase/supabase-js": "2.43.1",
"@tanstack/react-query": "^5.32.0",
"@web3modal/wagmi": "^4.1.11",
"@xmtp/frames-validator": "^0.5.0",
"clsx": "^2.1.1",
"encoding": "^0.1.13",
"ethers": "^5.6",
"frames.js": "0.16.2",
"frog": "0.8.6",
"hono": "4.5.8",
"iron-session": "8.0.1",
"luxon": "^3.4.4",
"next": "^14.2.10",
"pino-pretty": "^11.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rollbar": "^2.26.4",
"satori": "^0.10.13",
"sharp": "0.32.6",
"siwe": "2.3.2",
"sonner": "^1.4.41",
"strip-ansi": "^7.1.0",
"tailwindcss-animate": "^1.0.7",
"viem": "^2.9.26",
"wagmi": "^2.5.21",
"zod": "^3.23.6"
},
"devDependencies": {
"@frames.js/debugger": "^0.2.10",
"@total-typescript/ts-reset": "^0.5.1",
"@trivago/prettier-plugin-sort-imports": "4.1.0",
"@types/luxon": "^3.4.2",
"@types/node": "20.12.7",
"@types/react": "18.2.79",
"@types/react-dom": "18.2.25",
"autoprefixer": "^10.4.19",
"child_process": "^1.0.2",
"concurrently": "^8.2.2",
"dotenv": "^16.4.5",
"eslint": "8.57.0",
"eslint-config-next": "14.2.1",
"prettier": "3.2.5",
"typescript": "5.4.5"
},
"prettier": {
"proseWrap": "always",
"plugins": [
"@trivago/prettier-plugin-sort-imports"
],
"importOrder": [
"^node",
"^react(.*)?$",
"^next(.*)?$",
"<THIRD_PARTY_MODULES>",
"^@/(.*)?$",
"^[./]",
"<THIRD_PARTY_TS_TYPES>",
"<TS_TYPES>",
"^@fontsource(/.*)?$"
]
}
}