-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
56 lines (56 loc) · 1.67 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
{
"name": "@hiroppy/site",
"version": "0.0.1",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"setup": "git config --local core.hooksPath .githooks && npm run corepack",
"corepack": "corepack enable pnpm",
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"check": "astro check",
"test": "playwright test",
"test:update": "docker build -f snapshot.dockerfile -t snapshot-update . && docker run --rm --network host -v $(pwd):/work/ -w /work/ -it snapshot-update",
"fmt": "prettier -w .",
"fmt:check": "prettier --check .",
"data:generate": "node scripts/index.mjs",
"data:clean": "rm -r ./generated/* ./src/assets/images/external/*",
"cache": "node scripts/generatecache.mjs",
"serve": "serve dist",
"a11y": "pa11y-ci",
"lh": "lhci autorun"
},
"devDependencies": {
"@lhci/cli": "0.14.0",
"@playwright/test": "1.47.2",
"cheerio": "1.0.0",
"color": "4.2.3",
"emoji-js": "3.8.1",
"octokit": "4.0.3",
"pa11y-ci": "3.1.0",
"prettier": "3.3.3",
"prettier-plugin-astro": "0.14.1",
"prettier-plugin-tailwindcss": "0.6.9",
"remark": "15.0.1",
"remark-frontmatter": "5.0.0",
"serve": "14.2.4",
"strip-markdown": "6.0.0",
"typescript": "5.6.3",
"yaml": "2.5.1"
},
"dependencies": {
"@astrojs/check": "0.9.4",
"@astrojs/mdx": "3.1.9",
"@astrojs/partytown": "2.1.2",
"@astrojs/rss": "4.0.10",
"@astrojs/sitemap": "3.1.6",
"@astrojs/tailwind": "5.1.4",
"algoliasearch": "4.24.0",
"astro": "4.15.12",
"instantsearch.js": "4.74.2",
"marked": "14.1.4",
"satori": "0.11.3",
"sharp": "0.33.5"
}
}