-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
94 lines (94 loc) · 2.8 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
{
"name": "dns.surf",
"version": "0.3.0",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"local": "vercel dev",
"worker": "wrangler dev",
"deploy": "wrangler deploy",
"postinstall": "node scripts/colo.mjs && simple-git-hooks || true",
"cf-dns": "tsx --env-file=.env scripts/cf-dns.mjs",
"monitor": "tsx scripts/monitor.mjs",
"dev:monitor": "tsx --env-file=.env scripts/monitor.mjs"
},
"dependencies": {
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/mdx": "^14.2.5",
"@radix-ui/react-aspect-ratio": "^1.1.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.1",
"@uidotdev/usehooks": "^2.4.1",
"@unovis/react": "1.4.3-beta.0",
"@unovis/ts": "1.4.3-beta.0",
"buffer": "^6.0.3",
"dohjs": "^0.3.3",
"is-valid-domain": "^0.1.6",
"lucide-react": "^0.299.0",
"next": "^14.2.5",
"ofetch": "^1.4.0",
"punycode": "^2.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.49.2",
"react-intersection-observer": "^9.13.1",
"undici": "^6.20.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@antfu/eslint-config": "^3.7.3",
"@cloudflare/workers-types": "^4.20240925.0",
"@eslint-react/eslint-plugin": "^1.14.2",
"@hookform/resolvers": "^3.3.2",
"@iconify-json/ant-design": "^1.1.13",
"@iconify-json/devicon": "^1.1.33",
"@iconify-json/lucide": "^1.1.150",
"@iconify-json/mdi": "^1.1.63",
"@iconify-json/mynaui": "^1.2.6",
"@iconify-json/oui": "^1.2.0",
"@iconify-json/subway": "^1.1.10",
"@iconify/tailwind": "^0.1.4",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/typography": "^0.5.10",
"@types/alpinejs": "^3.13.5",
"@types/mdx": "^2.0.13",
"@types/node": "*",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"autoprefixer": "^10.4.19",
"class-variance-authority": "^0.7.0",
"cloudflare": "^3.5.0",
"clsx": "^2.0.0",
"eslint": "^9.11.1",
"eslint-plugin-format": "^0.1.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.12",
"hono": "^3.11.7",
"lint-staged": "^15.2.10",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.5.9",
"raw-loader": "^4.0.2",
"simple-git-hooks": "^2.11.1",
"tailwind-merge": "^2.2.0",
"tailwindcss": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.19.1",
"typescript": "*",
"vercel": "^32.4.1",
"wrangler": "^3.78.10"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}