-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
89 lines (89 loc) · 2.72 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": "ux-patterns-for-developers",
"license": "Dual MIT and Commercial",
"author": "David Dias",
"type": "module",
"version": "0.1.0",
"scripts": {
"analyze": "ANALYZE=true pnpm build",
"build": "next build",
"check:links": "lychee --config ./lychee.toml --verbose .",
"clean": "git clean -xdf node_modules out .next",
"debug": "NODE_OPTIONS='--inspect' next dev",
"dev": "next",
"lint": "next lint",
"lint:fix": "next lint --fix",
"generate": "cross-env NODE_OPTIONS='--import tsx' plop --plopfile=plopfile.ts",
"postbuild": "pagefind --site .next/server/app --output-path public/_pagefind",
"release": "auto shipit",
"release:first": "auto shipit --prerelease",
"release:verbose": "auto shipit -v",
"release:version": "auto version -v",
"start": "next start",
"tsc": "tsc --noEmit",
"update-patterns": "node scripts/update-patterns-list.js"
},
"packageManager": "[email protected]",
"browserslist": [
">= .25%",
"not dead"
],
"dependencies": {
"@codesandbox/sandpack-react": "^2.19.11",
"@mdn/browser-compat-data": "^5.6.37",
"@radix-ui/react-slot": "^1.1.2",
"@sentry/nextjs": "^8.54.0",
"@types/chalk": "^2.2.4",
"@types/dagre": "^0.7.52",
"chalk": "^5.4.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dagre": "^0.8.5",
"fast-glob": "^3.3.3",
"gray-matter": "^4.0.3",
"html-to-image": "^1.11.11",
"lucide-react": "^0.475.0",
"markdown-to-jsx": "^7.7.3",
"next": "^15.1.6",
"next-plausible": "^3.12.4",
"nextra": "4.2.5",
"nextra-theme-docs": "4.2.5",
"openai": "^4.83.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-intersection-observer": "^9.15.1",
"react-markdown": "^9.0.3",
"react-resizable-panels": "^2.1.7",
"reactflow": "^11.11.4",
"remark": "^15.0.1",
"remark-gfm": "^4.0.0",
"remark-mdx": "^3.1.0",
"remark-stringify": "^11.0.0",
"remove-markdown": "^0.6.0",
"require-in-the-middle": "^7.5.1",
"simple-icons": "^14.6.0",
"tailwind-merge": "^3.0.1",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@next/bundle-analyzer": "^15.1.6",
"@radix-ui/react-aspect-ratio": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.6",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "4.0.5",
"@types/node": "22.13.1",
"@types/react": "19.0.8",
"cross-env": "^7.0.3",
"dotenv": "^16.4.7",
"eslint": "^9.20.0",
"eslint-config-next": "15.1.6",
"pagefind": "^1.3.0",
"plop": "^4.0.1",
"tailwindcss": "4.0.5",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}