forked from cert-manager/website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.67 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.67 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "cert-manager.io",
"version": "2.0.0",
"license": "Apache-2.0",
"author": "cert-manager-maintainers",
"contributors": [
{
"name": "cert-manager-maintainers",
"email": "cert-manager-maintainers@googlegroups.com",
"url": "https://cert-manager.io"
}
],
"engines": {
"npm": ">=10.0.0",
"node": ">=20.19.0"
},
"scripts": {
"dev": "next dev",
"build": "next build --webpack",
"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:eslint": "eslint .",
"check:stylelint": "stylelint **/*.css",
"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' '!content/*docs/trust/trust-manager/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": {
"*.{css}": [
"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": "4.6.0",
"@headlessui/react": "2.2.9",
"@next/mdx": "16.1.6",
"classnames": "2.5.1",
"compare-versions": "6.1.1",
"copy-to-clipboard": "^3.3.3",
"gray-matter": "4.0.3",
"next": "^16.0.0",
"next-mdx-remote": "6.0.0",
"next-seo": "6.8.0",
"prism-react-renderer": "2.4.1",
"prismjs": "^1.30.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-scroll": "1.9.3",
"rehype-autolink-headings": "7.1.0",
"rehype-external-links": "3.0.0",
"rehype-slug": "6.0.0",
"remark-directive": "^4.0.0",
"remark-gfm": "4.0.1",
"remark-inline-links": "7.0.0",
"unist-util-visit": "5.1.0"
},
"devDependencies": {
"@eslint/js": "9.39.3",
"@next/eslint-plugin-next": "16.1.6",
"@tailwindcss/aspect-ratio": "0.4.2",
"@tailwindcss/forms": "0.5.11",
"@tailwindcss/postcss": "4.2.1",
"@tailwindcss/typography": "0.5.19",
"concurrently": "9.2.1",
"eslint": "9.39.3",
"eslint-config-next": "16.1.6",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-mdx": "3.6.2",
"eslint-plugin-react": "7.37.5",
"format-api-docs": "file:scripts/gendocs/postprocess",
"globals": "17.3.0",
"markdown-link-check": "3.14.2",
"markdown-spellcheck": "1.3.1",
"next-sitemap": "4.2.3",
"postcss": "8.5.6",
"prettier": "3.8.1",
"remark-cli": "12.0.1",
"remark-code-import": "1.2.0",
"remark-lint": "10.0.1",
"remark-preset-lint-consistent": "6.0.1",
"remark-preset-lint-recommended": "7.0.1",
"remark-toc": "9.0.0",
"stylelint": "17.4.0",
"stylelint-config-standard": "40.0.0",
"tailwindcss": "4.2.1"
}
}