-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·61 lines (61 loc) · 1.62 KB
/
package.json
File metadata and controls
executable file
·61 lines (61 loc) · 1.62 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
{
"name": "blog",
"version": "1.0.0",
"type": "module",
"private": true,
"scripts": {
"dev": "astro dev",
"pregenerate": "node scripts/pregenerate-python.mjs",
"build": "node scripts/pregenerate-python.mjs && astro build && pagefind --site dist",
"preview": "astro preview",
"sync": "astro sync",
"astro": "astro",
"format:check": "prettier --check .",
"format": "prettier --write .",
"lint": "eslint ."
},
"volta": {
"node": "20.19.0",
"pnpm": "10.6.5"
},
"engines": {
"node": "20.19.0"
},
"dependencies": {
"@astrojs/rss": "^4.0.11",
"@astrojs/sitemap": "^3.2.1",
"@resvg/resvg-js": "^2.6.2",
"@tailwindcss/vite": "^4.0.14",
"astro": "5.5.4",
"katex": "0.16.22",
"lodash.kebabcase": "^4.1.1",
"luxon": "^3.6.0",
"moment-jalaali": "0.10.4",
"rehype-katex": "7.0.1",
"remark-collapse": "0.1.2",
"remark-math": "6.0.0",
"remark-toc": "9.0.0",
"satori": "0.12.1",
"sharp": "0.33.5",
"tailwindcss": "^4.0.14",
"unist-util-visit": "^5.1.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@pagefind/default-ui": "^1.3.0",
"@tailwindcss/typography": "^0.5.16",
"@types/lodash.kebabcase": "^4.1.9",
"@types/luxon": "^3.4.2",
"@types/moment-jalaali": "^0.7.9",
"@typescript-eslint/parser": "^8.26.1",
"eslint": "^9.22.0",
"eslint-plugin-astro": "^1.3.1",
"globals": "^16.0.0",
"pagefind": "^1.3.0",
"prettier": "^3.5.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.11",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.1"
}
}