-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
109 lines (109 loc) · 3.42 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "op-atlas",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npx prisma generate && next dev",
"build": "prisma generate && next build && prisma migrate deploy",
"start": "next start",
"format": "prettier --write .",
"lint": "next lint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:push": "prisma db push",
"report:applicants": "tsx src/scripts/applicants.ts",
"report:applications": "tsx src/scripts/applications.ts",
"dump:badgeholders": "tsx src/scripts/badgeholders.ts",
"rewards": "tsx src/scripts/rewards.ts",
"kyc": "tsx src/scripts/kyc.ts",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{css,md}": "prettier --write"
},
"dependencies": {
"@ethereum-attestation-service/eas-sdk": "^2.1.4",
"@farcaster/auth-kit": "^0.3.1",
"@google-cloud/storage": "^7.10.2",
"@hookform/resolvers": "^3.3.4",
"@pinata/sdk": "^2.1.0",
"@prisma/client": "^5.12.1",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-hover-card": "^1.0.7",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.1.2",
"@rive-app/react-canvas-lite": "^4.13.0",
"@types/ramda": "^0.29.12",
"@vercel/analytics": "^1.3.0",
"@vercel/speed-insights": "^1.0.10",
"browser-image-compression": "^2.0.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cmdk": "^1.0.0",
"cookies-next": "^4.2.1",
"date-fns": "^3.6.0",
"date-fns-tz": "^3.1.3",
"embla-carousel-react": "^8.0.2",
"graphql": "^16.9.0",
"graphql-request": "^7.1.0",
"html2canvas": "^1.4.1",
"lucide-react": "^0.363.0",
"mixpanel-browser": "^2.50.0",
"nanoid": "^5.0.7",
"next": "14.2.3",
"next-auth": "^5.0.0-beta.16",
"next-themes": "^0.3.0",
"octokit": "^3.2.0",
"prisma": "^5.12.1",
"ramda": "^0.30.0",
"react": "^18",
"react-dom": "^18",
"react-dom-confetti": "^0.2.0",
"react-hook-form": "^7.51.2",
"react-image-crop": "^11.0.5",
"satori": "^0.10.13",
"sonner": "^1.4.41",
"tailwind-merge": "^2.2.2",
"tailwindcss-animate": "^1.0.7",
"usehooks-ts": "^3.1.0",
"viem": "^2.14.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/mixpanel-browser": "^2.49.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/parser": "^5.56.0",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.1.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^12.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss": "^8",
"prettier": "^2.8.8",
"tailwindcss": "^3.3.0",
"tsx": "^4.15.2",
"typescript": "^5"
}
}