-
Notifications
You must be signed in to change notification settings - Fork 259
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.15 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 3.15 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
{
"name": "documentation",
"version": "0.1.0",
"private": true,
"scripts": {
"clean": "node -e \"const fs=require('fs');fs.rmSync('.temp',{recursive:true,force:true});fs.rmSync('.next',{recursive:true,force:true});fs.rmSync('public/api-search',{recursive:true,force:true})\"",
"dev": "next dev",
"build": "npm run build:content && npm run build:typedoc && next build",
"build:ci": "npm run build:content && npm run build:typedoc && npm run build:sitemap && next build",
"build:content": "tsx scripts/build-content.ts",
"build:example-images": "tsx scripts/build-example-images.ts",
"build:local": "next build",
"build:search": "tsx scripts/build-search.ts",
"build:sitemap": "tsx scripts/build-sitemap.ts",
"build:typedoc": "tsx scripts/build-typedoc.ts",
"check:example-images": "tsx scripts/check-example-images.ts",
"evaluate:app-router": "tsx scripts/evaluate-app-router.ts",
"start": "next start",
"test": "vitest run",
"test:watch": "vitest",
"test:update": "vitest run --update",
"validate:content": "tsx scripts/validate-content.ts",
"upload:search": "tsx scripts/upload-search-index.ts"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@mui/icons-material": "^9.3.1",
"@mui/material": "^9.3.1",
"@mui/system": "^9.3.0",
"@next/mdx": "^16.3.1",
"eslint-config-next": "^16.3.1",
"next": "^16.3.1",
"next-mdx-remote": "^6.0.0",
"node-html-parser": "^9.0.1",
"prism-react-renderer": "^2.4.1",
"prop-types": "^15.8.1",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-ga4": "^3.0.1",
"react-player": "^3.4.0",
"react-super-responsive-table": "^6.0.2",
"rehype-parse": "^9.0.1",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@types/html-to-text": "^9.0.4",
"@types/node": "^26.2.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"del": "^8.0.1",
"esutils": "^2.0.3",
"glob": "^13.0.6",
"gray-matter": "^4.0.3",
"html-to-text": "^10.0.1",
"next-plugin-transpile-modules": "^2.0.0",
"next-remote-watch": "^2.0.0",
"puppeteer": "^25.8.0",
"rehype-highlight": "^7.0.2",
"rehype-katex": "^7.0.1",
"rehype-react": "^8.0.0",
"remark-lint": "^10.0.1",
"remark-math": "^6.0.0",
"sass": "^1.103.0",
"sharp": "^0.35.3",
"tsx": "^4.23.12",
"typedoc": "^0.28.20",
"typescript": "^6.0.3",
"unified": "^11.0.5",
"unist-util-visit": "^5.1.0",
"vitest": "^4.1.11",
"webpack": "^5.109.2",
"yaml": "^2.9.0"
},
"resolutions": {
"@types/react": "^19.2.17"
},
"overrides": {
"deepmerge-ts": "^8.0.0",
"postcss": "^8.5.10",
"sharp": "^0.35.3"
},
"engines": {
"npm": ">=11.10.0"
}
}