-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 989 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 989 Bytes
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
{
"name": "website",
"private": true,
"type": "module",
"version": "1.0.0",
"scripts": {
"postinstall": "npx playwright install",
"dev": "astro dev",
"start": "astro dev",
"prebuild": "npm run check && start-server-and-test start http://localhost:4321 pdf",
"build": "astro build",
"preview": "astro preview",
"format": "prettier --write .",
"check": "astro check && prettier --check .",
"a11y": "axe http://localhost:4321 http://localhost:4321/blog/",
"pdf": "node ./scripts/generate-pdf.js 4321",
"astro": "astro"
},
"devDependencies": {
"@astrojs/check": "0.9.4",
"@astrojs/mdx": "4.3.3",
"@astrojs/rss": "4.0.12",
"@astrojs/sitemap": "3.4.1",
"@axe-core/cli": "4.10.2",
"astro": "5.12.9",
"netlify-plugin-playwright-cache": "^0.0.1",
"playwright": "^1.54.1",
"prettier": "3.6.2",
"prettier-plugin-astro": "0.14.1",
"start-server-and-test": "^2.0.13",
"typescript": "5.8.3"
}
}