-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.81 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.81 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
{
"name": "website",
"version": "5.0.0",
"private": true,
"scripts": {
"dev": "bunx --bun next dev",
"build": "bunx --bun next build",
"postbuild": "bunx next-sitemap && mv public/sitemap.xml public/sitemap_index.xml && sed 's/sitemap-0/sitemap/g' public/sitemap_index.xml > public/sitemap_index_tmp.xml && mv public/sitemap_index_tmp.xml public/sitemap_index.xml && mv public/sitemap-0.xml public/sitemap.xml",
"start": "bunx --bun next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"analyze": "ANALYZE=true bunx --bun next build",
"prepare": "husky",
"indexnow": "bun run scripts/submit-indexnow.ts"
},
"dependencies": {
"@arcjet/bun": "1.0.0-beta.15",
"@arcjet/inspect": "1.0.0-beta.15",
"@arcjet/next": "1.0.0-beta.15",
"@next/bundle-analyzer": "16.1.6",
"@phosphor-icons/react": "2.1.10",
"@radix-ui/react-accordion": "1.2.12",
"@radix-ui/react-slot": "1.2.4",
"@radix-ui/react-tooltip": "1.2.8",
"@tailwindcss/postcss": "4.1.18",
"@vercel/og": "0.8.6",
"@vercel/speed-insights": "1.3.1",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"date-fns": "4.1.0",
"date-fns-tz": "3.2.0",
"feed": "5.2.0",
"loops": "6.0.1",
"lucide-react": "0.562.0",
"next": "16.1.6",
"next-sitemap": "4.2.3",
"next-themes": "0.4.6",
"next-view-transitions": "0.3.5",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-icons": "5.5.0",
"tailwind-merge": "3.4.0"
},
"devDependencies": {
"@eslint/compat": "2.0.2",
"@eslint/eslintrc": "3.3.3",
"@eslint/js": "9.39.2",
"@tailwindcss/typography": "0.5.19",
"@types/node": "25.2.1",
"@types/react": "19.2.13",
"@types/react-dom": "19.2.3",
"@typescript-eslint/eslint-plugin": "8.54.0",
"@typescript-eslint/parser": "8.54.0",
"baseline-browser-mapping": "2.9.19",
"eslint": "9.39.2",
"eslint-config-next": "16.1.6",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"globals": "16.5.0",
"husky": "9.1.7",
"lint-staged": "16.2.7",
"postcss": "8.5.6",
"prettier": "3.8.1",
"prettier-plugin-tailwindcss": "0.7.2",
"react-doctor": "0.1.4",
"string-replace-loader": "3.3.0",
"tailwindcss": "4.1.18",
"typescript": "5.9.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"sharp",
"@vercel/speed-insights"
]
},
"trustedDependencies": [
"@tailwindcss/oxide",
"@vercel/speed-insights",
"esbuild",
"sharp"
],
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,md,mdx}": [
"prettier --write"
]
}
}