-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.73 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.73 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
{
"name": "expressjs-website",
"type": "module",
"private": true,
"description": "Express.js Website",
"author": {
"name": "Express.js Documentation Team and Contributors"
},
"license": "CC-BY-SA-4.0",
"repository": {
"type": "git",
"url": "git+https://github.com/expressjs/expressjs.com.git"
},
"scripts": {
"dev": "astro dev",
"build": "NODE_OPTIONS=--max-old-space-size=4096 astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"spell": "cspell --no-progress \"**/*.{md,mdx}\"",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check": "npm run format:check && npm run lint && npm run spell",
"fix": "npm run format && npm run lint:fix",
"prepare": "husky",
"lint-staged": "lint-staged",
"test:unit": "node --test tests/unit/*.test.mjs",
"test:e2e": "playwright test"
},
"dependencies": {
"@astrojs/markdown-remark": "^7.2.2",
"@astrojs/mdx": "^7.0.5",
"@astrojs/react": "^6.0.2",
"@astrojs/rss": "^4.0.19",
"@astrojs/sitemap": "^3.7.3",
"@orama/core": "^1.2.19",
"@orama/ui": "^1.5.4",
"astro": "^7.1.6",
"astro-expressive-code": "^0.44.1",
"astro-icon": "^1.1.5",
"gray-matter": "^4.0.3",
"mdast-util-from-markdown": "^2.0.3",
"mdast-util-to-string": "^4.0.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"satori": "^0.29.0",
"sharp": "^0.35.3",
"unist-util-visit": "^5.1.0"
},
"packageManager": "npm@11.14.1",
"devEngines": {
"runtime": {
"name": "node",
"version": ">=24.15.0",
"onFail": "error"
}
},
"devDependencies": {
"@csstools/postcss-global-data": "^4.0.0",
"@eslint/js": "^9.39.2",
"@iconify-json/fluent": "^1.2.54",
"@playwright/test": "^1.62.1",
"@types/node": "^26.1.2",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"cspell": "^10.0.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-astro": "^1.5.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"globals": "^17.4.0",
"husky": "^9.1.7",
"lint-staged": "^17.2.0",
"postcss-custom-media": "^12.0.1",
"postcss-nested": "^8.0.0",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.0",
"unplugin-icons": "^23.0.1",
"vite-plugin-svgr": "^5.2.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,astro}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,css,mjs}": [
"prettier --write"
],
"*.{md,mdx}": [
"cspell --no-progress --no-must-find-files"
]
}
}