-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.83 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.83 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
{
"name": "personal-website",
"type": "module",
"version": "1.0.0",
"scripts": {
"dev": "astro dev",
"build": "astro check && astro build && pagefind --site dist && cp -r dist/pagefind public/",
"preview": "astro preview",
"sync": "astro sync",
"astro": "astro",
"format:check": "prettier --check .",
"format": "prettier --write .",
"lint": "eslint .",
"test": "vitest run",
"test:all": "pnpm test && pnpm test:e2e",
"test:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"dependencies": {
"@astrojs/rss": "^4.0.18",
"@astrojs/sitemap": "^3.7.2",
"@resvg/resvg-js": "^2.6.2",
"@tailwindcss/vite": "^4.2.4",
"astro": "^6.1.9",
"dayjs": "^1.11.20",
"github-slugger": "^2.0.0",
"mdast-util-to-string": "^4.0.0",
"satori": "^0.25.0",
"sharp": "^0.34.5",
"slug": "^11.0.1",
"tailwindcss": "^4.2.4"
},
"pnpm": {
"overrides": {
"flatted": "^3.4.2",
"svgo": "^4.0.1",
"fast-xml-parser": "^5.5.7",
"mdast-util-to-hast": "^13.2.1",
"devalue": "^5.6.4",
"h3": "^1.15.9",
"yaml": "^2.8.3"
}
},
"devDependencies": {
"@astrojs/check": "^0.9.8",
"@ibm/plex": "^6.4.1",
"@pagefind/default-ui": "^1.5.2",
"@playwright/test": "^1.59.1",
"@shikijs/transformers": "^4.0.2",
"@tailwindcss/typography": "^0.5.19",
"@types/hast": "^3.0.4",
"@types/mdast": "^4.0.4",
"@types/slug": "^5.0.9",
"@typescript-eslint/parser": "^8.59.0",
"eslint": "^10.2.1",
"eslint-plugin-astro": "^1.7.0",
"globals": "^17.5.0",
"pagefind": "^1.5.2",
"prettier": "^3.8.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.0",
"vitest": "^4.1.5"
}
}