-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.53 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.53 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "ts-nextjs-tailwind-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "tsx scripts/migration.ts && prisma generate && next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix && pnpm format",
"lint:strict": "eslint --max-warnings=98 src",
"typecheck": "tsc --noEmit --incremental false",
"test:watch": "jest --watch",
"test": "jest",
"format": "prettier -w .",
"format:check": "prettier -c .",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"prepare": "husky install",
"migrate": "tsx scripts/migration.ts",
"backfillBountiesAlbums": "tsx scripts/backfillBountiesAlbums.ts",
"generate": "prisma generate"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@farcaster/frame-node": "^0.0.30",
"@farcaster/frame-sdk": "^0.0.60",
"@farcaster/frame-wagmi-connector": "^0.0.16",
"@farcaster/miniapp-sdk": "^0.1.8",
"@headlessui/react": "^2.2.1",
"@mui/material": "^5.17.1",
"@mui/x-charts": "^7.28.0",
"@neynar/nodejs-sdk": "^3.34.0",
"@prisma/adapter-pg": "^7.0.0",
"@prisma/client": "^7.0.0",
"@rainbow-me/rainbowkit": "^2.2.8",
"@tanstack/react-query": "^5.72.1",
"@trpc/client": "11.0.0-rc.592",
"@trpc/next": "11.0.0-rc.592",
"@trpc/react-query": "11.0.0-rc.592",
"@trpc/server": "11.0.0-rc.592",
"@types/react-infinite-scroller": "^1.2.5",
"@upstash/redis": "^1.34.9",
"@vercel/analytics": "^1.5.0",
"@vercel/og": "^0.6.8",
"@zkpassport/sdk": "^0.12.5",
"axios": "^1.8.4",
"clsx": "^2.1.1",
"csv-parse": "^6.1.0",
"date-fns": "^4.1.0",
"dotenv": "^16.4.7",
"framer-motion": "^11.18.2",
"frames.js": "^0.20.0",
"jotai": "^2.12.2",
"js-cookie": "^3.0.5",
"lucide-react": "^0.509.0",
"next": "13.5.3",
"pg": "^8.14.1",
"pino": "^9.6.0",
"pino-pretty": "^11.3.0",
"qrcode.react": "^4.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-dropzone": "^14.3.8",
"react-infinite-scroller": "^1.2.6",
"react-minimal-pie-chart": "^9.1.0",
"react-toastify": "^10.0.6",
"superjson": "^2.2.2",
"tailwind-merge": "^2.6.0",
"viem": "^2.37.5",
"wagmi": "^2.16.9",
"zod": "^3.24.2"
},
"devDependencies": {
"@commitlint/cli": "^16.3.0",
"@commitlint/config-conventional": "^16.2.4",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/forms": "^0.5.10",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@types/js-cookie": "^3.0.6",
"@types/pg": "^8.11.11",
"@types/react": "^18.3.20",
"@types/testing-library__jest-dom": "^5.14.9",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"autoprefixer": "^10.4.21",
"encoding": "^0.1.13",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.28",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.5.0",
"next-router-mock": "^0.9.13",
"next-sitemap": "^2.5.28",
"postcss": "^8.5.3",
"prettier": "^2.8.8",
"prisma": "^7.0.0",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --max-warnings=98",
"prettier -w"
],
"**/*.{json,css,scss,md,webmanifest}": [
"prettier -w"
]
}
}