-
-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathpackage.json
94 lines (94 loc) · 2.79 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": "pnpm@9.15.2",
"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": "tsx scripts/colo.ts && simple-git-hooks || true",
"cf-dns": "tsx --env-file=.env scripts/cf-dns.ts",
"monitor": "tsx scripts/monitor.ts",
"dev:monitor": "tsx --env-file=.env scripts/monitor.ts"
},
"dependencies": {
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/mdx": "^15.1.3",
"@radix-ui/react-aspect-ratio": "^1.1.1",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.2",
"@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.469.0",
"next": "^15.1.3",
"ofetch": "^1.4.1",
"punycode": "^2.3.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.54.2",
"react-intersection-observer": "^9.14.0",
"undici": "^7.2.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.1",
"@cloudflare/workers-types": "^4.20241224.0",
"@eslint-react/eslint-plugin": "^1.22.1",
"@hookform/resolvers": "^3.9.1",
"@iconify-json/ant-design": "^1.2.5",
"@iconify-json/devicon": "^1.2.11",
"@iconify-json/lucide": "^1.2.20",
"@iconify-json/mdi": "^1.2.2",
"@iconify-json/mynaui": "^1.2.9",
"@iconify-json/oui": "^1.2.4",
"@iconify-json/subway": "^1.2.0",
"@iconify/tailwind": "^1.2.0",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/typography": "^0.5.15",
"@types/alpinejs": "^3.13.11",
"@types/mdx": "^2.0.13",
"@types/node": "*",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"autoprefixer": "^10.4.20",
"class-variance-authority": "^0.7.1",
"cloudflare": "^3.5.0",
"clsx": "^2.1.1",
"eslint": "^9.17.0",
"eslint-plugin-format": "^0.1.3",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"hono": "^4.6.15",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"raw-loader": "^4.0.2",
"simple-git-hooks": "^2.11.1",
"tailwind-merge": "^2.6.0",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.19.2",
"typescript": "*",
"vercel": "^39.2.2",
"wrangler": "^3.99.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}