-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.51 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.51 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
{
"name": "learn-v-2",
"version": "2.0.0",
"private": true,
"packageManager": "yarn@1.22.22",
"resolutions": {
"**/@11ty/gray-matter/js-yaml": "4.3.1",
"**/@docusaurus/plugin-content-docs/js-yaml": "4.3.1",
"**/@docusaurus/utils-validation/js-yaml": "4.3.1",
"**/@docusaurus/utils/js-yaml": "4.3.1",
"**/cosmiconfig/js-yaml": "4.3.1",
"**/gray-matter/js-yaml": "3.15.1",
"**/http-proxy-middleware": "2.0.10",
"**/joi": "17.13.6",
"**/nanoid": "3.3.18",
"**/svgo": "3.3.4"
},
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start",
"build": "docusaurus build",
"build:netlify": "node scripts/verify-git-history.js && node scripts/verify-indexnow-vendor.js && node scripts/verify-swagger-ui-vendor.js && npm ci --prefix scripts/site-build-gate --ignore-scripts --no-audit && docusaurus build && node scripts/run-post-build-gates.mjs",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"test": "vitest",
"test:run": "vitest run && npm run test:indexnow && npm run test:swagger-ui-vendor && npm run test:dependency-authority && npm run test:site-build-gate",
"test:dependency-authority": "node --test tests/dependency_authority.test.js",
"test:indexnow": "node --test tests/indexnow_plugin.test.js",
"test:swagger-ui-vendor": "node --test tests/swagger_ui_vendor.test.js",
"test:site-build-gate": "node --test tests/site_build_gate.test.js",
"vendor:swagger-ui": "node scripts/verify-swagger-ui-vendor.js --write",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui"
},
"dependencies": {
"@babel/core": "^7.29.7",
"@docusaurus/core": "^3.10.2",
"@docusaurus/mdx-loader": "^3.10.2",
"@docusaurus/plugin-google-gtag": "^3.10.2",
"@docusaurus/plugin-google-tag-manager": "^3.10.2",
"@docusaurus/preset-classic": "^3.10.2",
"@docusaurus/theme-common": "^3.10.2",
"@docusaurus/theme-mermaid": "^3.10.2",
"@easyops-cn/docusaurus-search-local": "0.55.3",
"@mdx-js/react": "^3.1.1",
"@netlify/blobs": "11.0.1",
"@tailwindcss/typography": "^0.5.20",
"@types/react": "^19.2.18",
"acorn": "^8.18.0",
"axios": "^1.19.0",
"clsx": "^2.1.1",
"dotenv": "^17.4.2",
"mermaid": "^11.17.0",
"parse5": "8.0.1",
"postcss": "^8.5.26",
"postcss-import": "^17.0.0",
"postcss-nesting": "^14.0.1",
"posthog-docusaurus": "^2.0.5",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-inlinesvg": "^4.5.0",
"react-loadable": "^5.5.0",
"react-markdown": "^10.1.0",
"react-player": "^3.4.0",
"remark-gfm": "^4.0.1",
"saxes": "6.0.0",
"swagger-ui": "^5.32.14",
"typescript": "^6.0.3",
"webpack": "^5.109.2"
},
"devDependencies": {
"@docusaurus/faster": "3.10.2",
"@tailwindcss/postcss": "^4.3.3",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.5",
"@vitejs/plugin-react": "^6.0.5",
"@vitest/coverage-v8": "^4.1.11",
"autoprefixer": "^10.5.4",
"happy-dom": "^20.11.2",
"jsdom": "^30.0.1",
"postcss-loader": "^8.2.1",
"postcss-preset-env": "^11.4.0",
"swagger-ui-dist": "5.32.14",
"tailwindcss": "^4.3.3",
"vite": "^8.2.1",
"vitest": "^4.1.11"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}