-
Notifications
You must be signed in to change notification settings - Fork 337
/
package.json
104 lines (104 loc) · 3.35 KB
/
package.json
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
95
96
97
98
99
100
101
102
103
104
{
"name": "cert-manager.io",
"version": "2.0.0",
"license": "Apache-2.0",
"author": "cert-manager-maintainers",
"contributors": [
{
"name": "cert-manager-maintainers",
"email": "[email protected]",
"url": "https://cert-manager.io"
}
],
"engines": {
"npm": ">=10.0.0",
"node": ">=20.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "npm run generate:sitemap",
"generate:sitemap": "next-sitemap",
"start": "next start",
"check": "concurrently --group --timings npm:check:* # Run all the npm check:* scripts in parallel",
"check:next-lint": "next lint",
"check:links": "find content/docs -type f -name '*.md' | xargs markdown-link-check --quiet --config markdown-link-check.json 2>&1 | awk -v RS=FILE: '/ERROR/{f=1; print RS $0} END{exit f}' # Split into records based on the word FILE and print only records containing word ERROR",
"check:spelling": "FORCE_COLOR=1 mdspell --report --en-us --ignore-numbers --ignore-acronyms 'content/**/*.md' 'content/**/*.html' '_layouts/*.html' '_includes/*.html' '*.html' '!**/api-docs.md' '!content/*docs/policy/approval/approver-policy/api-reference.md' # Force color output in mdspell. # See https://github.com/lukeapage/node-markdown-spellcheck/issues/36#issuecomment-482649408 ",
"check:markdown": "remark --rc-path .remarkrc --frail --quiet content/"
},
"lint-staged": {
"*.{scss}": [
"stylelint --fix"
],
"*.{js,json,jsx,md,mdx}": [
"prettier --write"
],
"*.{js,jsx,md,mdx}": [
"eslint --cache --fix"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"browser": {
"fs": false,
"path": false,
"child_process": false
},
"dependencies": {
"@docsearch/react": "3.6.0",
"@headlessui/react": "2.1.2",
"@next/mdx": "14.2.4",
"classnames": "2.5.1",
"compare-versions": "6.1.0",
"gray-matter": "4.0.3",
"next": "14.2.12",
"next-mdx-remote": "5.0.0",
"next-seo": "6.5.0",
"prism-react-renderer": "2.3.1",
"prismjs": "^1.29.0",
"react": "18.3.1",
"react-copy-to-clipboard": "5.1.0",
"react-dom": "18.3.1",
"react-scroll": "1.9.0",
"rehype-autolink-headings": "7.1.0",
"rehype-slug": "6.0.0",
"remark-external-links": "9.0.1",
"remark-gfm": "4.0.0",
"remark-inline-links": "7.0.0",
"unist-util-visit": "5.0.0"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.2.4",
"concurrently": "8.2.2",
"eslint": "8.31.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-markdown": "5.0.0",
"eslint-plugin-mdx": "3.1.5",
"eslint-plugin-react": "^7.34.3",
"format-api-docs": "file:scripts/gendocs/postprocess",
"markdown-link-check": "3.12.2",
"markdown-spellcheck": "1.3.1",
"next-sitemap": "4.2.3",
"prettier": "3.3.2",
"remark-cli": "12.0.1",
"remark-code-import": "1.2.0",
"remark-lint": "10.0.0",
"remark-preset-lint-consistent": "6.0.0",
"remark-preset-lint-recommended": "7.0.0",
"remark-toc": "9.0.0",
"sass": "1.77.6",
"stylelint": "16.6.1",
"stylelint-config-standard": "36.0.1",
"windicss-webpack-plugin": "1.8.0"
}
}