-
Notifications
You must be signed in to change notification settings - Fork 322
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.63 KB
/
Copy pathpackage.json
File metadata and controls
125 lines (125 loc) · 3.63 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
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "cachelib",
"version": "0.0.0",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start --port 3004 --host 0.0.0.0",
"build": "docusaurus build",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"serve": "docusaurus serve",
"clear": "docusaurus clear",
"ci": "yarn lint && yarn prettier:diff",
"lint": "eslint --cache \"**/*.js\" && stylelint \"**/*.css\"",
"prettier": "prettier --config .prettierrc --write \"**/*.{js,md}\"",
"prettier:diff": "prettier --config .prettierrc --list-different \"**/*.{js,md}\""
},
"dependencies": {
"@babel/helpers": "^7.26.10",
"@babel/runtime": "^7.26.10",
"@braintree/sanitize-url": "^6.0.1",
"@docusaurus/core": "2.1.0",
"@docusaurus/plugin-content-docs": "2.1.0",
"@docusaurus/preset-classic": "2.1.0",
"@docusaurus/theme-classic": "2.1.0",
"@docusaurus/theme-search-algolia": "2.1.0",
"algoliasearch-helper": "^3.11.2",
"axios": "^1.14.0",
"brace-expansion": "^5.0.9",
"docusaurus-plugin-internaldocs-fb": "1.8.0",
"dompurify": "^3.4.11",
"eta": "^2.0.0",
"http-cache-semantics": "^4.1.1",
"http-proxy-middleware": "^2.0.7",
"js-yaml": "^4.3.1",
"mermaid": "^10.9.8",
"postcss": "^8.5.23",
"qs": "^6.15.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"semver": "^7.5.2",
"send": "^0.19.0",
"serialize-javascript": "^7.0.5",
"serve-static": "^1.16.0",
"svgo": "^2.8.1",
"tmp": "^0.2.4",
"typescript": "^4.5.2",
"ua-parser-js": "^1.0.33",
"uuid": "^14.0.0",
"webpack-dev-server": "^5.2.1",
"ws": "^8.17.1"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.7.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-header": "^3.0.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"prettier": "^2.0.2",
"stylelint": "^13.2.1"
},
"resolutions": {
"@babel/core": "^7.29.7",
"ansi-html": "0.0.8",
"ua-parser-js": "^1.0.33",
"eta": "^2.0.0",
"http-cache-semantics": "^4.1.1",
"@braintree/sanitize-url": "^6.0.1",
"semver": "^7.5.2",
"webpack": "~5.105.0",
"webpack-dev-middleware": "^5.3.4",
"braces": "^3.0.3",
"ws": "^8.17.1",
"dompurify": "^3.4.11",
"send": "^0.19.0",
"serve-static": "^1.16.0",
"cookie": "^0.7.0",
"mermaid": "^10.9.8",
"http-proxy-middleware": "^2.0.7",
"cross-spawn": "^7.0.5",
"axios": "^1.14.0",
"wait-on": "^7.2.0",
"**/express/path-to-regexp": "0.1.13",
"node-forge": "^1.4.0",
"flatted": "^3.4.2",
"svgo": "^2.8.1",
"picomatch": "^2.3.2",
"minimatch": "^3.1.4",
"yaml": "^1.10.3",
"qs": "^6.15.2",
"@docusaurus/core/**/js-yaml": "^4.1.1",
"@docusaurus/preset-classic/**/js-yaml": "^4.1.1",
"@docusaurus/plugin-content-docs/**/js-yaml": "^4.1.1",
"algoliasearch-helper": "^3.11.2",
"tmp": "^0.2.4",
"webpack-dev-server": "^5.2.1",
"brace-expansion": "^5.0.9",
"@babel/runtime": "^7.26.10",
"lodash": "^4.18.0",
"lodash-es": "^4.18.0",
"serialize-javascript": "^7.0.5",
"uuid": "^14.0.0",
"follow-redirects": "^1.16.0",
"@babel/helpers": "^7.26.10",
"got": "^11.8.5",
"postcss": "^8.5.23",
"trim": "^0.0.3"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}