forked from github/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
221 lines (221 loc) · 8.22 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
{
"name": "docs.github.com",
"private": true,
"repository": "https://github.com/github/docs",
"license": "(MIT AND CC-BY-4.0)",
"author": {
"name": "GitHub",
"email": "opensource+docs@github.com",
"url": "https://github.com/github/docs"
},
"type": "module",
"imports": {
"#src/*": {
"default": "./src/*"
}
},
"exports": "./server.js",
"scripts": {
"build": "next build",
"debug": "cross-env NODE_ENV=development ENABLED_LANGUAGES=en nodemon --inspect server.js",
"dev": "cross-env npm start",
"fixture-dev": "cross-env ROOT=tests/fixtures npm start",
"fixture-test": "cross-env ROOT=tests/fixtures npm test -- tests/rendering-fixtures",
"index-test-fixtures": "node src/search/scripts/index-elasticsearch.js -l en -l ja -V ghae -V dotcom --index-prefix tests -- src/search/tests/fixtures/search-indexes",
"lint": "eslint '**/*.{js,mjs,ts,tsx}'",
"lint-content": "src/content-linter/scripts/markdownlint.js",
"lint-translation": "cross-env NODE_OPTIONS=--experimental-vm-modules jest src/content-linter/tests/lint-files.js",
"openapi-docs": "src/rest/docs.js",
"playwright-test": "playwright test --project=\"Google Chrome\"",
"prepare": "husky install",
"prettier": "prettier -w \"**/*.{ts,tsx,js,mjs,scss,yml,yaml}\"",
"prettier-check": "prettier -c \"**/*.{ts,tsx,js,mjs,scss,yml,yaml}\"",
"prevent-pushes-to-main": "node script/prevent-pushes-to-main.js",
"rest-dev": "src/rest/scripts/update-files.js",
"show-action-deps": "echo 'Action Dependencies:' && rg '^[\\s|-]*(uses:.*)$' .github -I -N --no-heading -r '$1$2' | sort | uniq | cut -c 7-",
"prestart": "node script/cmp-files.js package-lock.json .installed.package-lock.json || npm install && cp package-lock.json .installed.package-lock.json",
"start": "cross-env NODE_ENV=development ENABLED_LANGUAGES=en nodemon server.js",
"start-all-languages": "cross-env NODE_ENV=development nodemon server.js",
"start-for-playwright": "cross-env ROOT=tests/fixtures TRANSLATIONS_FIXTURE_ROOT=tests/fixtures/translations ENABLED_LANGUAGES=en,ja NODE_ENV=test node server.js",
"sync-rest": "src/rest/scripts/update-files.js",
"sync-search": "cross-env NODE_OPTIONS='--max_old_space_size=8192' start-server-and-test sync-search-server 4002 sync-search-indices",
"sync-search-ghes-release": "cross-env GHES_RELEASE=1 start-server-and-test sync-search-server 4002 sync-search-indices",
"sync-search-indices": "src/search/scripts/sync-search-indices.js",
"sync-search-server": "cross-env NODE_ENV=production PORT=4002 MINIMAL_RENDER=true CHANGELOG_DISABLED=true node server.js",
"sync-webhooks": "src/rest/scripts/update-files.js -o webhooks",
"test": "cross-env NODE_OPTIONS='--max_old_space_size=4096 --experimental-vm-modules' jest --logHeapUsage",
"test-watch": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --watch --notify --notifyMode=change --coverage",
"translation-check": "start-server-and-test translation-check-server 4002 translation-check-test",
"translation-check-server": "cross-env NODE_ENV=test PORT=4002 node server.js",
"translation-check-test": "script/i18n/test-html-pages.js",
"tsc": "tsc --noEmit"
},
"lint-staged": {
"*.{js,mjs,ts,tsx}": "eslint --cache --fix",
"*.{js,mjs,scss,ts,tsx,yml,yaml}": "prettier --write",
"{content,data}/**/*.md": "src/content-linter/scripts/markdownlint.js --errors --paths"
},
"dependencies": {
"@elastic/elasticsearch": "7.11.0",
"@github/failbot": "0.8.3",
"@octokit/request-error": "5.0.0",
"@primer/behaviors": "^1.3.3",
"@primer/css": "^21.0.1",
"@primer/octicons": "^19.1.0",
"@primer/octicons-react": "^19.1.0",
"@primer/react": "35.27.0",
"accept-language-parser": "^1.5.0",
"ajv": "^8.11.0",
"ajv-errors": "^3.0.0",
"ajv-formats": "^2.1.1",
"bottleneck": "2.19.5",
"boxen": "7.1.0",
"cheerio": "^1.0.0-rc.11",
"cheerio-to-text": "0.2.3",
"classnames": "^2.3.1",
"connect-datadog": "0.0.9",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dayjs": "^1.11.3",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-rate-limit": "6.7.0",
"express-timeout-handler": "^2.2.2",
"fastest-levenshtein": "1.0.16",
"file-type": "18.3.0",
"flat": "^5.0.2",
"github-slugger": "^2.0.0",
"glob": "10.0.0",
"got": "^13.0.0",
"gray-matter": "^4.0.3",
"hast-util-from-parse5": "^8.0.1",
"hast-util-to-string": "^2.0.0",
"hastscript": "^8.0.0",
"helmet": "^7.0.0",
"highlight.js": "11.7.0",
"highlightjs-curl": "^1.3.0",
"hot-shots": "^10.0.0",
"html-entities": "^2.3.3",
"http-proxy-middleware": "2.0.6",
"imurmurhash": "^0.1.4",
"is-svg": "5.0.0",
"javascript-stringify": "^2.1.0",
"js-cookie": "^3.0.1",
"js-yaml": "^4.1.0",
"liquidjs": "^10.7.0",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"lowdb": "6.0.0",
"mdast-util-from-markdown": "^2.0.0",
"mdast-util-to-hast": "^13.0.1",
"mdast-util-to-markdown": "2.0.0",
"mdast-util-to-string": "^4.0.0",
"morgan": "^1.10.0",
"msgpack5rpc": "^1.1.0",
"next": "13.4.12",
"ora": "^7.0.1",
"parse5": "7.1.2",
"port-used": "^2.0.8",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "^8.0.3",
"react-syntax-highlighter": "^15.5.0",
"rehype-highlight": "^6.0.0",
"rehype-raw": "^6.1.1",
"rehype-slug": "^5.0.1",
"rehype-stringify": "^9.0.3",
"remark-gemoji-to-emoji": "^1.1.0",
"remark-gfm": "^3.0.1",
"remark-parse": "^10.0.1",
"remark-parse-no-trim": "^8.0.4",
"remark-rehype": "^10.1.0",
"rss-parser": "^3.13.0",
"scroll-anchoring": "^0.1.0",
"semver": "^7.5.2",
"sharp": "0.32.1",
"slash": "^5.0.0",
"strip-html-comments": "^1.0.0",
"styled-components": "^5.3.5",
"swr": "^2.0.0",
"unified": "^10.1.2",
"unist-util-visit": "^5.0.0",
"url-template": "^3.0.0",
"walk-sync": "^3.0.0"
},
"devDependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.0.3",
"@graphql-inspector/core": "^5.0.0",
"@graphql-tools/load": "^8.0.0",
"@jest/globals": "29.6.2",
"@octokit/rest": "^19.0.4",
"@playwright/test": "1.36.2",
"@types/imurmurhash": "^0.1.1",
"@types/js-cookie": "^3.0.2",
"@types/lodash": "^4.14.182",
"@types/react": "18.2.19",
"@types/react-dom": "^18.0.5",
"@types/react-syntax-highlighter": "^15.5.2",
"@typescript-eslint/eslint-plugin": "6.3.0",
"@typescript-eslint/parser": "6.3.0",
"chalk": "^5.0.1",
"change-case": "^4.1.2",
"commander": "^11.0.0",
"cross-env": "^7.0.3",
"csp-parse": "0.0.2",
"dedent": "^1.0.1",
"eslint": "8.46.0",
"eslint-config-prettier": "9.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"event-to-promise": "^0.8.0",
"graphql": "^16.5.0",
"http-status-code": "^2.1.0",
"husky": "^8.0.1",
"jest": "29.6.2",
"jest-expect-message": "1.1.3",
"jest-fail-on-console": "^3.0.1",
"jest-github-actions-reporter": "^1.0.3",
"jest-slow-test-reporter": "^1.0.0",
"json-schema-merge-allof": "^0.8.1",
"kill-port": "2.0.1",
"lint-staged": "^13.0.1",
"make-promises-safe": "^5.1.0",
"markdownlint": "^0.28.2",
"markdownlint-rule-helpers": "^0.19.0",
"mdast-util-gfm-table": "^2.0.0",
"micromark-extension-gfm-table": "^2.0.0",
"mkdirp": "^3.0.0",
"mockdate": "^3.0.5",
"nock": "^13.2.7",
"nodemon": "3.0.1",
"npm-merge-driver-install": "^3.0.0",
"nth-check": "2.1.1",
"postcss": "^8.4.14",
"prettier": "^3.0.0",
"rimraf": "^5.0.0",
"robots-parser": "^3.0.0",
"sass": "^1.52.3",
"sentence-case": "^3.0.4",
"start-server-and-test": "^2.0.0",
"ts-jest": "29.1.1",
"typescript": "^5.0.2",
"unist-util-remove": "^4.0.0",
"unist-util-visit-parents": "6.0.1",
"website-scraper": "^5.3.1"
},
"optionalDependencies": {
"esm": "^3.2.25"
},
"engines": {
"node": "^16 || ^18 || ^20"
},
"cacheDirectories": [
"node_modules",
".next/cache"
]
}