-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.27 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.27 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
68
69
70
71
{
"name": "notes blog",
"type": "module",
"version": "5.9.0",
"repository": {
"type": "git",
"url": "https://github.com/antoniwan/notes.git"
},
"homepage": "https://notes.antoniwan.online",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "node scripts/generate-social-images.js && node scripts/update-sw-version.js && astro build",
"preview": "astro preview",
"astro": "astro",
"generate-social-images": "node scripts/generate-social-images.js",
"generate-favicons": "node scripts/generate-favicons.js",
"analyze": "astro build && npx @astrojs/vercel/static-build",
"lighthouse": "npx lighthouse http://localhost:4321 --output=html --output-path=./lighthouse-report.html",
"performance": "pnpm run build && pnpm run analyze",
"audit-performance": "pnpm run build && npx lighthouse http://localhost:4321 --only-categories=performance --output=json --output-path=./performance-audit.json",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"check": "astro check"
},
"dependencies": {
"@astrojs/mdx": "5.0.1",
"@astrojs/rss": "4.0.17",
"@astrojs/sitemap": "3.7.1",
"@astrojs/tailwind": "^6.0.2",
"@astrojs/vercel": "^10.0.1",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@vercel/analytics": "^1.6.1",
"@vercel/speed-insights": "^1.3.1",
"astro": "6.0.5",
"date-fns": "^4.1.0",
"js-yaml": "^4.1.1",
"mdast-util-to-string": "^4.0.0",
"reading-time": "^1.5.0",
"sentiment": "^5.0.2",
"sharp": "^0.34.5"
},
"devDependencies": {
"@astrojs/check": "0.9.8",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/typography": "^0.5.19",
"@typescript-eslint/parser": "^8.56.1",
"autoprefixer": "^10.4.24",
"eslint": "^10.0.2",
"eslint-plugin-astro": "^1.6.0",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^3.4.19",
"terser": "^5.46.0",
"typescript": "^5.9.3"
},
"pnpm": {
"overrides": {
"tar": "7.5.8",
"minimatch": "9.0.7",
"fast-xml-parser": "5.3.8",
"ajv": "6.14.0",
"rollup": "4.59.0",
"devalue": "5.6.3"
}
}
}