forked from cert-manager/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.49 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
105
106
107
108
109
110
{
"name": "cert-manager.io",
"version": "2.0.0",
"license": "ISC",
"author": "",
"contributors": [
{
"name": "Chris Mejlak",
"email": "[email protected]",
"url": "https://zentered.co"
},
{
"name": "Patrick Heneise",
"email": "[email protected]",
"url": "https://zentered.co"
}
],
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "npm run generate:sitemap",
"generate:sitemap": "next-sitemap",
"export": "next export",
"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/projects/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.3.2",
"@headlessui/react": "1.7.7",
"@next/mdx": "13.1.2",
"classnames": "2.3.2",
"compare-versions": "6.0.0-rc.1",
"gray-matter": "4.0.3",
"next": "13.1.2",
"next-mdx-remote": "4.2.0",
"next-seo": "5.15.0",
"prism-react-renderer": "1.3.5",
"react": "18.2.0",
"react-click-away-listener": "2.2.2",
"react-copy-to-clipboard": "5.1.0",
"react-dom": "18.2.0",
"react-instantsearch-dom": "6.38.3",
"react-scroll": "1.8.9",
"rehype-autolink-headings": "6.1.1",
"rehype-slug": "5.1.0",
"remark-external-links": "9.0.1",
"remark-gfm": "3.0.1",
"remark-inline-links": "6.0.1",
"sass": "1.57.1",
"unist-util-visit": "4.1.1"
},
"devDependencies": {
"concurrently": "^7.6.0",
"esbuild": "0.16.17",
"eslint": "8.31.0",
"eslint-config-next": "13.1.2",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-markdown": "3.0.0",
"eslint-plugin-mdx": "2.0.5",
"eslint-plugin-react": "7.32.0",
"format-api-docs": "file:scripts/gendocs/postprocess",
"markdown-link-check": "3.10.3",
"markdown-spellcheck": "1.3.1",
"next-sitemap": "3.1.45",
"prettier": "2.8.2",
"remark-cli": "11.0.0",
"remark-code-import": "^1.1.1",
"remark-lint": "9.1.1",
"remark-preset-lint-consistent": "5.1.1",
"remark-preset-lint-recommended": "6.1.2",
"remark-toc": "8.0.1",
"sass": "1.57.1",
"stylelint": "14.16.1",
"stylelint-config-standard": "29.0.0",
"windicss-webpack-plugin": "1.7.7"
}
}