-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 4.54 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 4.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "spectro-cloud-docs",
"version": "4.5.11",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
"start": "npm run cves && npm run generate-partials && docusaurus start --host 0.0.0.0 --port 9000",
"build": "npm run generate-api-docs && npm run cves && npm run generate-partials && NODE_OPTIONS='--max-old-space-size=6144' GENERATE_SOURCEMAP=false docusaurus build",
"swizzle": "docusaurus swizzle",
"cves": "node utils/cves/index.js && npm run copy-cve-data ",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"test": "jest --silent",
"analyze-bundle": "docusaurus build --bundle-analyzer",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"typecheck": "tsc",
"generate-api-docs": "npm run run-api-parser && docusaurus gen-api-docs palette && docusaurus gen-api-docs emc",
"clean-api-docs": "docusaurus clean-api-docs palette && docusaurus clean-api-docs emc",
"run-api-parser": "node utils/api-parser/index.js",
"generate-partials": "./scripts/index-breaking-changes.sh && ./scripts/generate-partials.sh",
"lint": "eslint . -c .eslintrc.js --ext .js,.ts,.jsx,.tsx",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write \"**/*.{js,jsx,json,ts,tsx,md,mdx,css}\"",
"format-check": "prettier . --check",
"copy-cve-data": "mkdir -p static/security-data && cp .docusaurus/security-bulletins/default/data.json static/security-data/data.json",
"prepare": "husky"
},
"lint-staged": {
"**/*.{js,jsx,json,ts,tsx,md,mdx,css}": "npm run format"
},
"overrides": {
"react-live": ">=3.1.1 <4.0.0"
},
"resolutions": {
"react-live": ">=3.1.1 <4.0.0"
},
"dependencies": {
"@ant-design/icons": "^6.1.0",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.4.2",
"@docusaurus/core": "^3.9.2",
"@docusaurus/faster": "^3.9.2",
"@docusaurus/plugin-client-redirects": "^3.9.2",
"@docusaurus/plugin-ideal-image": "^3.9.2",
"@docusaurus/preset-classic": "^3.9.2",
"@docusaurus/types": "^3.9.2",
"@fortawesome/fontawesome-svg-core": "^7.1.0",
"@fortawesome/free-solid-svg-icons": "^7.1.0",
"@fortawesome/react-fontawesome": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"antd": "^5.26.4",
"axios-retry": "^4.5.0",
"babel-plugin-macros": "^3.1.0",
"clsx": "^2.1.1",
"docusaurus-plugin-image-zoom": "^2.0.0",
"docusaurus-plugin-openapi-docs": "^4.7.1",
"docusaurus-plugin-sass": "^0.2.5",
"docusaurus-theme-openapi-docs": "^4.7.1",
"fuse.js": "^7.1.0",
"node-fetch": "^3.1.0",
"node-gyp": "^12.1.0",
"p-ratelimit": "^1.0.1",
"prism-react-renderer": "^2.4.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-markdown": "10.1.0",
"react-select": "^5.10.2",
"remark-gfm": "4.0.1",
"sass": "^1.97.3",
"semver": "^7.7.1"
},
"devDependencies": {
"@argos-ci/cli": "^3.2.1",
"@argos-ci/playwright": "^6.4.2",
"@playwright/test": "^1.56.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "latest",
"@semantic-release/github": "latest",
"@semantic-release/npm": "latest",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.2",
"@tsconfig/docusaurus": "^2.0.5",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.46.3",
"babel-jest": "^30.2.0",
"dotenv": "^17.2.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-mdx": "^3.6.2",
"eslint-plugin-n": "^17.17.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.37.5",
"husky": "^9.1.7",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.6.2",
"jest-fetch-mock": "^3.0.3",
"linkinator": "^6.1.4",
"lint-staged": "^16.2.7",
"prettier": "3.5.3",
"semantic-release": "^24.2.8",
"test-links": "^0.0.1",
"ts-jest": "^29.4.5",
"typescript": "^5.7.2",
"typescript-plugin-css-modules": "^5.2.0",
"webpconvert": "^3.0.1",
"xml2js": "^0.6.2"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=20.0"
}
}