-
-
Notifications
You must be signed in to change notification settings - Fork 300
/
Copy pathpackage.json
62 lines (62 loc) · 1.35 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
{
"name": "@react-docgen-internal/website",
"private": true,
"version": "0.0.0",
"description": "react-docgen website",
"scripts": {
"dev": "nx exec -- next dev",
"build": "NODE_ENV=production nx exec -- next build",
"start": "nx exec -- next start"
},
"author": "Daniel Tschinder (http://github.com/danez)",
"license": "MIT",
"dependencies": {
"@codemirror/lang-javascript": "6.2.3",
"@codemirror/lang-json": "6.0.1",
"@codemirror/view": "6.36.4",
"@headlessui/react": "2.2.0",
"@types/react": "19.0.12",
"@types/react-dom": "19.0.4",
"@uiw/react-codemirror": "4.23.7",
"clsx": "2.1.1",
"next": "15.2.4",
"next-themes": "0.4.6",
"nextra": "4.2.17",
"nextra-theme-docs": "4.2.17",
"postcss": "8.5.3",
"postcss-lightningcss": "1.0.1",
"react": "19.1.0",
"react-docgen": "workspace:7.1.1",
"react-dom": "19.1.0",
"tailwindcss": "3.4.17"
},
"browserslist": [
"chrome 64",
"edge 79",
"firefox 67",
"opera 51",
"safari 12"
],
"nx": {
"targets": {
"build": {
"dependsOn": [
"^build"
],
"outputs": [
"{projectRoot}/.next"
]
},
"dev": {
"dependsOn": [
"^build"
]
},
"start": {
"dependsOn": [
"build"
]
}
}
}
}