forked from moodle/devdocs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.95 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
{
"name": "devdocs",
"version": "4.0",
"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",
"wikimedia-sync": "scripts/wikimedia-sync.js",
"component-spellings": "scripts/component-helper.js spelling",
"test": "jest",
"mdlint": "markdownlint-cli2",
"mdlint-all": "markdownlint-cli2 '{docs,general}/**/*.md' '*.md'",
"mdfix": "markdownlint-cli2-fix",
"mdfix-all": "markdownlint-cli2-fix '{docs,general}/**/*.md' '*.md'",
"lint": "mdlint-all",
"prepare": "husky install",
"spell": "cspell '*.md' '**/*.md' 'docs/*.md' 'docs/**/*.md' 'general/*.md' 'general/**/*.md'"
},
"dependencies": {
"@cmfcmf/docusaurus-search-local": "^0.10.0",
"@docusaurus/core": "2.0.0-beta.18",
"@docusaurus/plugin-pwa": "^2.0.0-beta.18",
"@docusaurus/preset-classic": "2.0.0-beta.18",
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@mdx-js/react": "^1.6.22",
"@mui/icons-material": "^5.6.0",
"@mui/material": "^5.5.3",
"clsx": "^1.1.1",
"commander": "5",
"dotenv": "^16.0.0",
"hast-util-from-parse5": "^5.0.0",
"mdx-mermaid": "^1.2.2",
"mermaid": "^8.14.0",
"plugin-image-zoom": "flexanalytics/plugin-image-zoom",
"prism-react-renderer": "^1.3.1",
"raw-loader": "^4.0.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@docusaurus/module-type-aliases": "^2.0.0-beta.18",
"@tsconfig/docusaurus": "^1.0.5",
"@types/core-js": "^2.5.5",
"@types/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"babel-jest": "^27.5.1",
"cspell": "^5.19.7",
"eslint": "^8.13.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-mdx": "^1.17.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-regexp": "^1.6.0",
"husky": "^7.0.4",
"inquirer": "^8.2.4",
"jest": "^27.5.1",
"js-yaml": "^4.1.0",
"lint-staged": "^12.3.7",
"markdownlint-cli2": "^0.4.0",
"markdownlint-rule-helpers": "^0.16.0",
"nodemw": "^0.17.0",
"stylelint": "^14.6.1",
"stylelint-config-standard": "^25.0.0",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3",
"unist-util-inspect": "6.0.0",
"winston": "^3.7.2"
}
}