-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 786 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 786 Bytes
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
{
"name": "the-human-pattern-lab-docs",
"version": "1.0.0",
"private": true,
"description": "Documentation site for The Human Pattern Lab",
"scripts": {
"start": "docusaurus start",
"build": "docusaurus build",
"serve": "docusaurus serve",
"deploy": "docusaurus deploy"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,css,scss,json}": [
"prettier --write"
]
},
"dependencies": {
"@docusaurus/core": "^3.9.0",
"@docusaurus/preset-classic": "^3.9.0",
"clsx": "^2.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "^3.9.2",
"@easyops-cn/docusaurus-search-local": "^0.52.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4"
}
}