-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.61 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
{
"dependencies": {
"@astrojs/check": "^0.9.9",
"@astrojs/markdown-remark": "^7.2.0",
"@astrojs/mdx": "^7.0.0",
"@astrojs/react": "^6.0.0",
"@astrojs/rss": "^4.0.18",
"@astrojs/sitemap": "^3.7.3",
"@resvg/resvg-wasm": "^2.6.2",
"@tailwindcss/typography": "^0.5.20",
"@tailwindcss/vite": "^4.3.0",
"astro": "^7.0.0",
"hast-util-to-html": "^9.0.5",
"markdown-it": "^14.2.0",
"mdast-util-to-hast": "^13.2.1",
"mdast-util-to-string": "^4.0.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"recharts": "^3.8.1",
"satori": "^0.19.1",
"tailwindcss": "^4.3.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@types/markdown-it": "^14.1.2",
"@types/node": "^25.2.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"rehype-stringify": "^10.0.1",
"remark-mdx": "^3.1.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"remark-stringify": "^11.0.0",
"ultracite": "^7.8.2",
"unified": "^11.0.5",
"vitest": "^4.1.8"
},
"name": "square-series",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"fixall": "pnpm run lint:write && pnpm run format:write && pnpm run check:fix",
"lint:write": "pnpm run lint --write",
"lint": "biome lint ./src",
"format:write": "pnpm run format --write",
"format": "biome format ./app",
"test": "vitest",
"test:run": "vitest run",
"check": "ultracite check",
"fix": "ultracite fix"
},
"packageManager": "pnpm@11.7.0",
"type": "module",
"version": "0.0.1"
}