-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.1 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
{
"name": "ux-patterns-for-developers",
"license": "MIT",
"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": "pnpm@9.15.1",
"browserslist": [
">= .25%",
"not dead"
],
"dependencies": {
"@mdn/browser-compat-data": "^5.6.26",
"@radix-ui/react-slot": "^1.1.1",
"@sentry/nextjs": "^8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.469.0",
"markdown-to-jsx": "^7.7.2",
"next": "^15.1.2",
"next-plausible": "^3.12.4",
"nextra": "4.0.0-app-router.33",
"nextra-theme-docs": "4.0.0-app-router.33",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-intersection-observer": "^9.14.0",
"require-in-the-middle": "^7.4.0",
"simple-icons": "^13.20.0",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@next/bundle-analyzer": "^15.1.2",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "4.0.0-beta.8",
"@types/node": "22.10.2",
"@types/react": "18.3.13",
"cross-env": "^7.0.3",
"eslint": "^9",
"eslint-config-next": "15.1.2",
"pagefind": "^1.3.0",
"plop": "^4.0.1",
"tailwindcss": "4.0.0-beta.8",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}