-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 986 Bytes
/
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
{
"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.0.2",
"@astrojs/rss": "4.0.9",
"@astrojs/sitemap": "3.2.1",
"@axe-core/cli": "4.10.1",
"astro": "5.0.4",
"netlify-plugin-playwright-cache": "^0.0.1",
"playwright": "^1.48.2",
"prettier": "3.4.2",
"prettier-plugin-astro": "0.14.1",
"start-server-and-test": "^2.0.8",
"typescript": "5.7.2"
}
}