forked from SumoLogic/sumologic-documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.44 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
111
112
113
{
"name": "sumo-docs",
"version": "0.0.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"
},
"dependencies": {
"@braintree/sanitize-url": "^6.0.1",
"@docusaurus/core": "^2.4.3",
"@docusaurus/cssnano-preset": "^2.4.3",
"@docusaurus/plugin-client-redirects": "^2.4.3",
"@docusaurus/plugin-content-blog": "^2.4.3",
"@docusaurus/plugin-debug": "^2.4.3",
"@docusaurus/plugin-google-analytics": "^2.4.3",
"@docusaurus/plugin-google-gtag": "^2.4.3",
"@docusaurus/plugin-google-tag-manager": "^2.4.3",
"@docusaurus/plugin-sitemap": "^2.4.3",
"@docusaurus/preset-classic": "^2.4.3",
"@docusaurus/theme-classic": "^2.4.3",
"@docusaurus/theme-search-algolia": "^2.4.3",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@eslint/eslintrc": "^1.3.3",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.16",
"@mdx-js/react": "^1.6.21",
"@mui/lab": "^5.0.0-alpha.108",
"@mui/material": "^5.10.14",
"@popperjs/core": "^2.11.6",
"cacheable-request": "^10.2.7",
"clsx": "^1.1.1",
"codespell": "^1.1.7",
"docusaurus-plugin-sass": "^0.2.1",
"docusaurus2-dotenv": "^1.4.0",
"file-loader": "^6.2.0",
"follow-redirects": "^1.14.8",
"glob-parent": "^5.1.2",
"got": "^12.5.2",
"infima": "0.2.0-alpha.42",
"json5": "^2.2.3",
"loader-utils": "^3.2.1",
"mdx-mermaid": "^1.3.2",
"mermaid": "^9.1.7",
"minimist": "^1.2.6",
"nanoid": "^3.1.31",
"node-fetch": "^2.6.7",
"node-forge": "^1.3.0",
"nth-check": "^2.0.1",
"prism-react-renderer": "^1.2.0",
"prismjs": "^1.27.0",
"raw-loader": "^4.0.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-fast-compare": "^3.2.0",
"react-iframe": "^1.8.0",
"remark-code-import": "^0.3.0",
"remark-import-partial": "^0.0.2",
"sass": "^1.44.0",
"sass-loader": "^12.4.0",
"shelljs": "^0.8.5",
"staticrypt": "^3.3.0",
"swc": "^1.0.11",
"swc-loader": "^0.2.3",
"trim": "^0.0.3",
"url-loader": "^4.1.1",
"use-sync-external-store": "1.2.0",
"webpack": "^5.76.0",
"yaml": "^2.3.1"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "^2.4.3",
"@tsconfig/docusaurus": "^1.0.4",
"@types/react": "^17.0.0",
"@types/webpack-env": "^1.16.3",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.26.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "^2.4.1",
"typescript": "^4.5.4"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*.{js,jsx,ts,tsx,css,less,md,mdx,json}": "prettier --write"
}
}