-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.65 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": "ryuji-blog",
"version": "0.2.0",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint:debug": "eslint ./src --debug",
"lint:fix": "next lint && eslint ./src --fix",
"lint": "eslint .",
"typecheck": "tsc",
"setup": "yarn build && prisma generate && prisma migrate deploy && prisma db seed"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@prisma/client": "5.12.1",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slider": "^1.1.2",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/themes": "^3.0.2",
"@tremor/react": "^3.15.0",
"@vercel/analytics": "^1.2.2",
"autoprefixer": "10.4.19",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"crypto-js": "^4.2.0",
"date-fns": "^3.6.0",
"eslint-config-next": "14.2.3",
"ethers": "^6.11.1",
"framer-motion": "^11.0.25",
"hastscript": "^9.0.0",
"keccak256": "^1.0.6",
"lucide-react": "^0.365.0",
"merkletreejs": "^0.3.11",
"next": "14.2.3",
"next-mdx-remote": "^4.4.1",
"next-themes": "^0.3.0",
"postcss": "8.4.38",
"react": "^18",
"react-archer": "^4.3.0",
"react-dom": "^18",
"react-player": "^2.16.0",
"react-tweet": "^3.2.1",
"rehype-external-links": "^3.0.0",
"server-only": "^0.0.1",
"sharp": "^0.33.5",
"sugar-high": "^0.6.0",
"tailwind-merge": "^2.2.2",
"tailwindcss": "3.4.3",
"tailwindcss-animate": "^1.0.7",
"tailwindcss-radix": "^3.0.3",
"tailwindcss-radix-colors": "^1.2.0",
"tocbot": "^4.27.19",
"viem": "^2.9.13",
"wagmi": "^2.5.19"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@radix-ui/colors": "^3.0.0",
"@tailwindcss/typography": "^0.5.12",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-kentcdodds": "^21.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import-access": "^2.1.2",
"eslint-plugin-tailwindcss": "^3.15.1",
"eslint-plugin-unused-imports": "^3.1.0",
"prisma": "^5.12.1",
"tailwind-scrollbar": "^3.1.0",
"ts-node": "^10.9.2",
"tsx": "^4.7.3",
"typescript": "^5"
}
}