-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.68 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.68 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
{
"name": "foundations",
"type": "module",
"version": "0.0.1-development",
"engines": {
"node": ">=22.12.0"
},
"packageManager": "pnpm@10.32.1",
"scripts": {
"dev": "astro dev",
"dev:pagefind": "pnpm build && node ./scripts/pagefind.mjs --dev && pnpm dev",
"build": "astro build",
"postbuild": "node scripts/pagefind.mjs",
"preview": "astro preview",
"astro": "astro",
"types:check": "astro sync && tsc -noEmit",
"format": "biome format --write . && prettier --list-different --write \"**/*.astro\"",
"lint": "biome lint --write --unsafe .",
"check": "biome ci && prettier --check \"**/*.astro\" && pnpm types:check"
},
"dependencies": {
"@astrojs/mdx": "^5.0.2",
"@astrojs/react": "^5.0.1",
"@floating-ui/react": "^0.27.19",
"@hookform/resolvers": "^5.2.2",
"@phosphor-icons/react": "^2.1.10",
"@tailwindcss/vite": "^4.2.2",
"@types/chroma-js": "^3.1.2",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"astro": "^6.0.8",
"chroma-js": "^3.2.0",
"cva": "1.0.0-beta.4",
"date-fns": "^4.1.0",
"motion": "^12.38.0",
"pagefind": "^1.4.0",
"posthog-js": "^1.363.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-hook-form": "^7.72.0",
"remark-mdx": "^3.1.1",
"remark-parse": "^11.0.0",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.2",
"unified": "^11.0.5",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "2.4.8",
"@types/hast": "^3.0.4",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"unist-util-visit": "^5.1.0"
}
}