-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3 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
90
91
92
93
94
{
"name": "dev-rules",
"version": "0.3.1",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start",
"build": "docusaurus 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",
"lint:md": "markdownlint \"**/*.md\" --ignore node_modules --ignore build --ignore .docusaurus",
"lint:md:fix": "markdownlint \"**/*.md\" --ignore node_modules --ignore build --ignore .docusaurus --fix",
"spellcheck": "cspell --no-must-find-files \"**/*.{md,mdx,js,jsx,ts,tsx}\"",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky install",
"postbuild": "node scripts/generate-sitemap.js",
"lighthouse:mobile": "lighthouse http://localhost:3000 --emulated-form-factor=mobile --only-categories=performance,accessibility,best-practices,seo --output=html --output-path=./lighthouse-reports/mobile.html --chrome-flags=\"--headless\"",
"lighthouse:desktop": "lighthouse http://localhost:3000 --preset=desktop --only-categories=performance,accessibility,best-practices,seo --output=html --output-path=./lighthouse-reports/desktop.html --chrome-flags=\"--headless\"",
"lighthouse:ci": "lhci autorun",
"check:links": "node scripts/check-links.js"
},
"dependencies": {
"@docusaurus/core": "^3.9.2",
"@docusaurus/preset-classic": "^3.9.2",
"@docusaurus/theme-mermaid": "^3.9.2",
"@docusaurus/theme-search-algolia": "^3.9.1",
"@easyops-cn/docusaurus-search-local": "^0.55.1",
"@mdx-js/react": "^3.1.1",
"clsx": "^2.0.0",
"prism-react-renderer": "^2.3.0",
"prismjs": "^1.30.0",
"react": "^19.2.0",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@cspell/dict-ru_ru": "^2.3.2",
"@docusaurus/module-type-aliases": "^3.1.1",
"@docusaurus/types": "^3.1.1",
"baseline-browser-mapping": "^2.10.8",
"cspell": "^9.7.0",
"glob": "^13.0.6",
"husky": "^9.1.7",
"linkinator": "^7.6.1",
"lint-staged": "^16.4.0",
"markdownlint-cli": "^0.48.0",
"prettier": "^3.8.1"
},
"lint-staged": {
"*.{md,mdx}": [
"markdownlint --fix",
"prettier --write",
"cspell --no-must-find-files"
],
"*.{js,jsx,ts,tsx,json,css,scss,html}": [
"prettier --write",
"cspell --no-must-find-files"
],
"*.{yml,yaml}": [
"prettier --write"
],
"package.json": [
"prettier --write"
],
"package-lock.json": [
"prettier --write"
]
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=20.0"
},
"overrides": {
"lodash-es": "4.17.23",
"tmp": ">=0.2.4",
"tough-cookie": ">=4.1.3"
},
"license": "MIT"
}