-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.62 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
{
"name": "garden-astro",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "run-p dev:astro dev:garden",
"dev:astro": "astro dev",
"dev:garden": "tsx dev.ts",
"dev:search": "astro build && pagefind --site dist --output-subdir pagefind --serve & open http://localhost:1414",
"test": "playwright test",
"start": "astro dev",
"fetch": "tsx fetch.ts",
"fetch:local": "tsx fetch.ts --local",
"build": "run-s -c \"astro build\" build:post",
"build:post": "pagefind --site dist --output-subdir pagefind",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --write --plugin-search-dir=. .",
"lint": "eslint 'src/**/*.{ts,svelte,astro}'"
},
"dependencies": {
"@astrojs/mdx": "^3.1.7",
"@astrojs/rss": "^4.0.7",
"@astrojs/sitemap": "^3.1.6",
"@astrojs/svelte": "^5.7.1",
"@astrojs/tailwind": "^5.1.1",
"astro": "^4.15.9",
"tailwindcss": "^3.4.13"
},
"devDependencies": {
"@giscus/svelte": "^3.0.0",
"@playwright/test": "^1.47.2",
"@tailwindcss/typography": "^0.5.15",
"@types/tar": "^6.1.13",
"@typescript-eslint/parser": "^8.7.0",
"chokidar": "^4.0.1",
"eslint": "^9.11.1",
"eslint-plugin-astro": "^1.2.4",
"eslint-plugin-svelte": "^2.44.1",
"glob": "^11.0.0",
"gray-matter": "^4.0.3",
"npm-run-all": "^4.1.5",
"octokit": "^4.0.2",
"pagefind": "^1.1.1",
"prettier-plugin-astro": "^0.14.1",
"remark": "^15.0.1",
"remark-frontmatter": "^5.0.0",
"rimraf": "^6.0.1",
"svelte": "^4.2.19",
"tar": "^6.2.1",
"tsx": "^4.19.1",
"unist-util-visit": "^5.0.0"
}
}