-
Notifications
You must be signed in to change notification settings - Fork 94
/
package.json
69 lines (69 loc) · 1.92 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
{
"name": "@pmndrs/docs",
"version": "0.1.0",
"private": true,
"type": "module",
"bin": {
"build": "bin/build.mjs"
},
"devDependencies": {
"@savvywombat/tailwindcss-grid-areas": "^4.0.0",
"@types/hast": "^3.0.4",
"@types/minimist": "^1.2.5",
"@types/node": "^18.19.50",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/sanitize-html": "^2.13.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.11",
"husky": "^9.1.6",
"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.6.6",
"semantic-release": "^24.1.1",
"tailwind-material-colors": "^3.2.2",
"tailwindcss": "^3.4.11",
"typescript": "^5.6.2"
},
"dependencies": {
"@codesandbox/sandpack-react": "^2.19.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.1.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/typography": "^0.5.15",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"gray-matter": "^4.0.3",
"image-size": "^1.1.1",
"match-sorter": "^6.3.4",
"next": "^14.2.11",
"next-mdx-remote": "^5.0.0",
"next-themes": "^0.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0",
"rehype-github-alerts": "^3.0.0",
"rehype-prism-plus": "^2.0.0",
"remark-gfm": "^4.0.0",
"sanitize-html": "^2.13.0",
"tailwind-merge": "^2.5.2"
},
"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"
},
"engines": {
"node": ">=20"
},
"packageManager": "npm@10.8.2"
}