forked from tigera/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.99 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.99 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
{
"name": "tigera-docs",
"version": "0.1.0",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start",
"start-container": "docusaurus start -h 0.0.0.0",
"start-next": "BUILD_NEXT=true docusaurus start",
"start-next-container": "BUILD_NEXT=true docusaurus start -h 0.0.0.0",
"build": "DOCUSAURUS_IGNORE_SSG_WARNINGS=true docusaurus build",
"build-next": "BUILD_NEXT=true yarn build",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"serve-container": "docusaurus serve -h 0.0.0.0",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"test": "playwright test --grep-invert=@archive",
"unittest": "jest --coverage",
"git-clean": "git restore --staged . && git clean -f .",
"dir-clean": "rm -rf ./calico ./calico-enterprise ./calico-cloud ./docs/calico ./docs/calico-enterprise ./docs/calico-cloud ./src/data ./static/img/calico ./static/img/calico-enterprise ./static/img/calico-cloud ./static/json/calico-api-swagger.json ./calico_versions.json ./calico-enterprise_versions.json ./calico-cloud_versions.json && find . -regex '.*_versioned_docs/version-.*' -delete",
"cut": "scripts/cut-new-version.sh",
"test:screenshots": "yarn test --config __screenshot-tests__/playwright.config.ts --quiet",
"test:show-report": "yarn playwright show-report",
"test:components": "jest",
"test:components:ci": "jest --silent"
},
"dependencies": {
"@apify/datastructures": "^2.0.3",
"@chakra-ui/anatomy": "2.3.4",
"@chakra-ui/icons": "1.1.1",
"@chakra-ui/react": "^2.8.2",
"@chakra-ui/styled-system": "2.12.0",
"@chakra-ui/system": "^2.6.2",
"@chakra-ui/theme-tools": "2.2.6",
"@crawlee/utils": "^3.13.10",
"@docsearch/react": "^3.9.0",
"@docusaurus/core": "^3.9.2",
"@docusaurus/faster": "^3.9.2",
"@docusaurus/plugin-content-docs": "^3.9.2",
"@docusaurus/preset-classic": "^3.9.2",
"@docusaurus/theme-common": "^3.9.2",
"@docusaurus/theme-search-algolia": "^3.9.2",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@jest/globals": "^29.4.1",
"@mdx-js/react": "^3.0.1",
"@swc/core": "^1.13.3",
"@swc/jest": "^0.2.39",
"algoliasearch": "^5.32.0",
"algoliasearch-helper": "^3.26.0",
"cheerio": "^1.1.0",
"clsx": "^2.1.1",
"framer-motion": "^4.1.17",
"prism-react-renderer": "^2.1.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-if": "^4.1.4",
"react-loadable": "^5.5.0",
"react-modal": "^3.15.1",
"react-modal-image": "^2.6.0",
"react-player": "^2.11.0",
"sanitize-html": "^2.13.1",
"swagger-ui-react": "^4.14.0",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "^3.9.2",
"@docusaurus/tsconfig": "^3.9.2",
"@docusaurus/types": "^3.9.2",
"@playwright/test": "1.47.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.3.0",
"@types/jest": "^30.0.0",
"@types/react": "^19.1.5",
"@types/react-dom": "^19.1.5",
"@types/sanitize-html": "^2.13.0",
"axios": "^1.12.0",
"crawlee": "^3.1.4",
"docusaurus-plugin-sass": "^0.2.2",
"html-entities": "^2.3.3",
"jest": "^30.0.5",
"jest-environment-jsdom": "^30.0.5",
"jest-junit": "^15.0.0",
"limiter": "^2.1.0",
"needle": "^3.2.0",
"playwright": "1.47.2",
"sass": "^1.54.2",
"ts-jest": "^29.4.0",
"typescript": "^5.8.3",
"yaml": "^2.2.2"
},
"jest-junit": {
"outputDirectory": "./coverage",
"outputName": "junit.xml"
},
"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": ">=22.17.0"
},
"packageManager": "yarn@4.9.2"
}