forked from bsv-blockchain/ts-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.17 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
{
"name": "docs-site",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "node scripts/build-manifest.mjs && vite-react-ssg build && node scripts/copy-docs-assets.mjs && test -f dist/index.html && pagefind --site dist --output-path dist/_pagefind && node scripts/check-built-links.mjs",
"preview": "vite preview",
"validate": "node scripts/validate-frontmatter.mjs && node scripts/check-links.mjs"
},
"dependencies": {
"@mdx-js/react": "^3.1.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-router-dom": "^6.28.0"
},
"devDependencies": {
"@mdx-js/rollup": "^3.1.0",
"@shikijs/rehype": "^4.2.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"ajv": "^8.17.0",
"ajv-formats": "^3.0.1",
"gray-matter": "^4.0.3",
"mermaid": "^11.0.0",
"pagefind": "^1.1.0",
"rehype-autolink-headings": "^7.0.0",
"rehype-slug": "^6.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-mdx-frontmatter": "^5.0.0",
"typescript": "^6.0.3",
"vite": "^8.0.16",
"vite-react-ssg": "^0.9.0"
}
}