-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.62 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.62 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
{
"name": "blog",
"version": "0.0.0",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
"dev": "docusaurus start --host 0.0.0.0",
"start": "docusaurus start",
"build": "docusaurus build",
"vercel-build": "[ \"$VERCEL\" = 1 ] && docusaurus build --out-dir build/blog && npm run vercel-copy-404",
"vercel-copy-404": "[ \"$VERCEL\" = 1 ] && echo \"copying 404\" && cp build/blog/404.html build/",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"blog:new": "NOW=$(date +\"%Y-%m-%d\") && mkdir ./blog/$NOW-$npm_config_slug && cp ./templates/blog-post/* ./blog/$NOW-$npm_config_slug/",
"format": "npx prettier -w",
"test": "npm run test:format && npm run lint && npm run build",
"test:format": "npx prettier --check .",
"lint": "npx eslint .",
"check:tags": "./scripts/check-category-tags.sh",
"seo:review": "node seo-reviewer.mjs",
"seo:review:all": "node seo-reviewer.mjs --all",
"seo:check": "node seo-reviewer.mjs",
"seo:check:all": "node seo-reviewer.mjs --all",
"seo:apply": "node seo-reviewer.mjs --apply",
"seo:apply:all": "node seo-reviewer.mjs --all --apply"
},
"dependencies": {
"@akebifiky/remark-simple-plantuml": "^1.0.2",
"@docusaurus/core": "^3.1.1",
"@docusaurus/preset-classic": "^3.1.1",
"@docusaurus/theme-mermaid": "^3.1.1",
"@mdx-js/react": "^3.0.0",
"@signalwire/docusaurus-plugin-llms-txt": "^1.2.2",
"clsx": "^1.1.1",
"dotenv": "^16.0.2",
"js-yaml": "^4.1.0",
"posthog-docusaurus": "^2.0.0",
"prism-react-renderer": "^2.1.0",
"raw-loader": "^4.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.3",
"react-lite-youtube-embed": "^2.3.1"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "^3.1.1",
"@docusaurus/tsconfig": "^3.1.1",
"@docusaurus/types": "^3.1.1",
"@types/react": "^18.2.29",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.29.4",
"playwright": "^1.57.0",
"prettier": "2.8.8",
"typescript": "~5.2.2"
},
"engines": {
"node": ">=18.0"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}