-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.54 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.54 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
113
{
"name": "my-website",
"version": "0.0.0",
"private": true,
"engines": {
"node": ">=22",
"npm": ">=10"
},
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start",
"build": "npm run redirect-lint && docusaurus build && cd build && echo '/2.0.0/* /:splat' > _redirects && npm run hyperlink",
"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": "eslint --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --write \"**/*.{ts,tsx,css,scss,js,mdx}\"",
"hyperlink": "hyperlink ./build --check-anchors --sources ./docs",
"redirect-lint": "node checkRedirects"
},
"dependencies": {
"@docusaurus/babel": "^3.7.0",
"@docusaurus/core": "^3.7.0",
"@docusaurus/plugin-client-redirects": "^3.7.0",
"@docusaurus/plugin-content-docs": "^3.7.0",
"@docusaurus/preset-classic": "^3.7.0",
"@docusaurus/theme-mermaid": "^3.7.0",
"@docusaurus/theme-search-algolia": "^3.7.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@inkeep/cxkit-docusaurus": "^0.5.94",
"@mdx-js/loader": "^3.1.0",
"@mdx-js/mdx": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@mui/material": "^5.13.7",
"@svgr/webpack": "^8.0.1",
"animejs": "^3.2.1",
"autoprefixer": "^10.4.13",
"axios": "^1.8.4",
"classnames": "^2.3.2",
"clsx": "1.2.1",
"docusaurus-plugin-hotjar": "^0.0.2",
"docusaurus-plugin-image-zoom": "^3.0.1",
"docusaurus-plugin-sass": "^0.2.5",
"file-loader": "^6.2.0",
"ignore-styles": "^5.0.1",
"lodash": "^4.17.21",
"npm": "^9.7.2",
"postcss": "^8.4.20",
"postcss-preset-env": "^8.5.1",
"prism-react-renderer": "^1.3.5",
"prop-types": "^15.8.1",
"react": "^18.0.0",
"react-code-blocks": "^0.0.9-0",
"react-dom": "^18.0.0",
"react-player": "^2.11.0",
"react-syntax-highlighter": "^15.6.1",
"remark-gfm": "^4.0.1",
"sass": "^1.81.0",
"url-loader": "^4.1.1"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"overrides": {
"got": "^12.1.0"
},
"devDependencies": {
"@argos-ci/cli": "^2.5.5",
"@argos-ci/playwright": "^4.1.0",
"@babel/core": "^7.26.0",
"@babel/plugin-transform-modules-commonjs": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@babel/register": "^7.25.9",
"@playwright/test": "^1.50.0",
"@typescript-eslint/eslint-plugin": "4.22.0",
"@untitaker/hyperlink": "^0.1.32",
"cheerio": "^1.0.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-spellcheck": "^0.0.20",
"prettier": "^2.7.1",
"raw-loader": "^4.0.2",
"tailwindcss": "^3.2.4",
"typescript": "*"
},
"lint-staged": {
"**/*.{js,ts,tsx, jsx, ts, mdx}": [
"eslint"
],
"**/*.{js,ts,tsx, jsx, ts, mdx, css, scss}": [
"prettier --write"
]
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}