-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.72 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.72 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
{
"name": "docs",
"version": "2.0.0",
"description": "Enterprise Health / WebChart documentation site built with Hugo, Tailwind CSS 4, and React 19 components.",
"type": "module",
"engines": {
"node": ">=24"
},
"scripts": {
"build": "./build.sh",
"build:wc": "./build.sh wc",
"build:eh": "./build.sh eh",
"dev:wc": "./build.sh --live wc",
"dev:eh": "./build.sh --live eh",
"build:components": "tsx scripts/build-components.ts",
"build:components:prod": "NODE_ENV=production tsx scripts/build-components.ts",
"watch:components": "tsx scripts/build-components.ts --watch",
"pages:dev": "wrangler pages dev public/eh --compatibility-date=2025-02-03 --compatibility-flags=nodejs_compat",
"pages:dev:wc": "wrangler pages dev public/wc --compatibility-date=2025-02-03 --compatibility-flags=nodejs_compat",
"pages:deploy": "wrangler pages deploy public/eh --project-name=docs-eh",
"pages:deploy:wc": "wrangler pages deploy public/wc --project-name=docs-wc",
"index:docs": "tsx scripts/index-docs.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/mieweb/docs.git"
},
"author": "MIE",
"license": "ISC",
"dependencies": {
"@mieweb/ui": "^0.1.0",
"@types/dompurify": "^3.0.5",
"@types/marked": "^5.0.2",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"clsx": "^2.1.1",
"dompurify": "^3.3.1",
"highlight.js": "^11.11.1",
"hugo-extended": "^0.139.3",
"lucide-react": "^0.563.0",
"lunr": "^2.3.9",
"marked": "^17.0.1",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241230.0",
"@eslint/js": "^9.18.0",
"@tailwindcss/cli": "^4.1.18",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/typography": "^0.5.19",
"@types/lunr": "^2.3.7",
"@types/node": "^22.10.7",
"esbuild": "^0.24.2",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"postcss": "^8.5.6",
"postcss-cli": "^11.0.1",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^4.1.18",
"tsx": "^4.19.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.20.0",
"wrangler": "^4.62.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,css,html}": [
"prettier --write"
]
}
}