-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.44 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 3.44 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "refactx",
"type": "module",
"version": "1.8.0",
"license": "MIT",
"prettier": {
"experimentalTernaries": false,
"printWidth": 140,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"quoteProps": "consistent",
"jsxSingleQuote": false,
"trailingComma": "es5",
"bracketSpacing": true,
"bracketSameLine": false,
"arrowParens": "always",
"proseWrap": "preserve",
"htmlWhitespaceSensitivity": "css",
"endOfLine": "lf",
"embeddedLanguageFormatting": "auto",
"singleAttributePerLine": false,
"plugins": [
"prettier-plugin-astro"
],
"overrides": [
{
"files": "*.astro",
"options": {
"parser": "astro",
"astroAllowShorthand": true,
"astroSkipFrontmatter": false
}
}
]
},
"scripts": {
"dev": "astro dev",
"build": "astro check && astro build && pagefind --site .vercel/output/static",
"preview": "python3 -m http.server --directory dist/client 4321",
"astro": "astro",
"format": "prettier . --check --ignore-unknown",
"format:write": "prettier . --write --ignore-unknown --cache"
},
"dependencies": {
"@astrojs/react": "5.0.3",
"@astrojs/vercel": "^10.0.4",
"@floating-ui/react": "^0.27.12",
"@nanostores/react": "^0.8.4",
"@octokit/rest": "^22.0.1",
"@waline/client": "^3.6.0",
"astro": "^6.1.5",
"bcryptjs": "^3.0.3",
"clsx": "^2.1.1",
"framer-motion": "^12.5.0",
"medium-zoom": "^1.1.0",
"nanostores": "^0.11.4",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.0.2",
"typescript": "^5.9.3"
},
"devDependencies": {
"@astrojs/check": "^0.9.8",
"@astrojs/markdown-remark": "^7.1.0",
"@astrojs/mdx": "^5.0.3",
"@astrojs/rss": "^4.0.18",
"@astrojs/sitemap": "3.7.2",
"@expressive-code/plugin-collapsible-sections": "^0.43.1",
"@expressive-code/plugin-line-numbers": "^0.43.1",
"@iconify/json": "^2.2.321",
"@iconify/tailwind4": "^1.0.6",
"@lokesh.dhakar/quantize": "^1.4.0",
"@tailwindcss/typography": "^0.5.20",
"@tailwindcss/vite": "^4.3.1",
"@types/cli-progress": "^3.11.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/mdast": "^4.0.4",
"@types/node": "^22.13.13",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/yargs": "^17.0.33",
"astro-expressive-code": "^0.43.1",
"astro-robots-txt": "^1.0.0",
"babel-plugin-react-compiler": "1.0.0",
"chalk": "^5.4.1",
"cli-progress": "^3.12.0",
"jsonwebtoken": "^9.0.3",
"katex": "^0.16.22",
"mdast-util-to-string": "^4.0.0",
"ndarray-pixels": "^5.0.1",
"node-cache": "^5.1.2",
"ora": "^8.2.0",
"pagefind": "^1.3.0",
"prettier": "^3.5.3",
"prettier-plugin-astro": "^0.14.1",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-callouts": "^2.0.2",
"rehype-external-links": "^3.0.0",
"rehype-katex": "^7.0.1",
"rehype-slug": "^6.0.0",
"rehype-unwrap-images": "^1.0.0",
"remark-directive": "^4.0.0",
"remark-directive-sugar": "^1.1.2",
"remark-imgattr": "^1.0.5",
"remark-math": "^6.0.0",
"remark-smartypants": "^3.0.2",
"sharp": "^0.34.1",
"shiki": "^3.2.2",
"tailwindcss": "^4.3.1",
"terser": "^5.46.0",
"tsx": "^4.22.4",
"unist-util-visit": "^5.0.0",
"yargs": "^17.7.2"
}
}