-
Notifications
You must be signed in to change notification settings - Fork 97
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.93 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.93 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
96
{
"name": "@pmndrs/docs",
"private": true,
"version": "3.1.7",
"type": "module",
"bin": {
"build": "bin/build.mjs"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@chromatic-com/playwright": "^0.12.8",
"@eslint/eslintrc": "^3.3.3",
"@playwright/test": "^1.57.0",
"@storybook/addon-docs": "^10.2.0",
"@storybook/addon-themes": "^10.2.0",
"@storybook/nextjs-vite": "^10.2.0",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/typography": "^0.5.19",
"@types/hast": "^3.0.4",
"@types/lodash-es": "^4.17.12",
"@types/minimist": "^1.2.5",
"@types/node": "^25.0.9",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/sanitize-html": "^2.16.0",
"autoprefixer": "^10.4.23",
"chromatic": "^13.3.5",
"eslint": "^9.0.0",
"eslint-config-next": "^16.0.0",
"eslint-plugin-storybook": "^10.2.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"minimist": "^1.2.8",
"postcss": "^8.4.45",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.0.0",
"prettier-plugin-tailwindcss": "^0.7.2",
"storybook": "^10.2.0",
"tailwindcss": "^4.1.18",
"tailwindcss-animate": "^1.0.7",
"tw-animate-css": "^1.4.0",
"typescript": "^5.6.2",
"vite": "^7.3.1"
},
"dependencies": {
"@codesandbox/sandpack-react": "^2.20.0",
"@fontsource/inconsolata": "^5.2.8",
"@fontsource/inter": "^5.2.8",
"@octokit/core": "^6.1.2",
"@radix-ui/react-collapsible": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-visually-hidden": "^1.2.4",
"@tailwindcss/aspect-ratio": "^0.4.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"gray-matter": "^4.0.3",
"image-size": "^2.0.2",
"lodash-es": "^4.17.21",
"lucide-react": "^0.563.0",
"match-sorter": "^6.3.4",
"mermaid": "^11.12.2",
"next": "^16.1.3",
"next-mdx-remote": "^5.0.0",
"next-themes": "^0.4.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.5.0",
"react-mcu": "^1.1.0",
"rehype-github-alerts": "^3.0.0",
"rehype-prism-plus": "^2.0.0",
"remark-gfm": "^4.0.1",
"sanitize-html": "^2.17.0",
"tailwind-merge": "^3.4.0",
"unist-util-visit": "^5.0.0"
},
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next",
"start": "next start",
"build": "next build",
"format": "prettier -w src/",
"lint": "eslint src/**/*.{ts,tsx} && prettier . --check",
"prepare": "husky && (test -f scripts/copy-fonts.sh && sh scripts/copy-fonts.sh || true)",
"release": "changeset publish",
"changeset": "changeset",
"test": "playwright test",
"chromatic": "chromatic --project-token $CHROMATIC_PROJECT_TOKEN",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"engines": {
"node": ">=20.9.0"
},
"packageManager": "pnpm@10.28.1"
}