-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.86 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.86 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
{
"name": "www",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"clean": "rm -rf node_modules",
"dev:contentlayer": "contentlayer2 dev",
"dev:next": "next dev --turbopack",
"dev": "run-p dev:*",
"build:contentlayer": "contentlayer2 build",
"build:next": "next build",
"build": "run-p build:*",
"start": "next start",
"lint": "next lint",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"typecheck": "tsc --noEmit",
"registry:format": "prettier registry/__index__.tsx registry.json \"public/r/**/*.json\" --write",
"registry:build": "tsx --tsconfig ./tsconfig.scripts.json ./scripts/build-registry.mts && pnpm registry:format"
},
"prettier": "@repo/prettier-config",
"dependencies": {
"@headlessui/react": "^2.2.4",
"@heroicons/react": "^2.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"contentlayer2": "^0.5.8",
"headcn": "workspace:*",
"mdast-util-from-markdown": "^2.0.2",
"mdast-util-to-string": "^4.0.0",
"mdx-bundler": "^10.1.1",
"next": "15.5.4",
"next-contentlayer2": "^0.5.8",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rehype-pretty-code": "^0.14.1",
"rehype-slug": "^6.0.0",
"rimraf": "^6.0.1",
"shiki": "^3.7.0",
"tailwind-merge": "^3.3.1",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"@repo/prettier-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@tailwindcss/postcss": "^4",
"@tailwindcss/typography": "^0.5.16",
"@types/mdast": "^4.0.4",
"@types/node": "^24.1.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/unist": "^3.0.3",
"eslint": "^9",
"npm-run-all": "^4.1.5",
"tailwindcss": "^4",
"tsx": "^4.20.3",
"typescript": "^5"
}
}