-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.71 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.71 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
{
"name": "elixir-no",
"type": "module",
"version": "0.0.1",
"packageManager": "pnpm@10.17.0",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"copy:pagefind:dev": "npx shx cp -r dist/pagefind public/",
"build:astro": "astro check && astro build",
"build:pagefind": "npx pagefind --source dist",
"build": "npm-run-all -s build:astro build:pagefind copy:pagefind:dev",
"dev:build": "npm-run-all -s build copy:pagefind:dev dev",
"preview": "astro preview",
"astro": "astro",
"postbuild": "pagefind --site dist",
"test:slugs": "node scripts/check-slugs.mjs",
"test:pages": "node scripts/test-pages.mjs"
},
"dependencies": {
"@astrojs/check": "^0.9.0",
"@astrojs/markdown-remark": "^6.0.0",
"@astrojs/mdx": "^4.0.0",
"@astrojs/react": "^4.0.0",
"@astrojs/rss": "^4.0.19",
"@astrojs/sitemap": "^3.7.2",
"@astrojs/tailwind": "^6.0.2",
"@headlessui/react": "^2.2.10",
"@heroicons/react": "^2.2.0",
"@tailwindcss/forms": "^0.5.7",
"astro": "~5.18.1",
"dayjs": "^1.11.20",
"dompurify": "^3.4.13",
"framer-motion": "^12.38.0",
"marked": "^17.0.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.2.1",
"sass": "^1.99.0",
"slugify": "^1.6.9",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.14",
"@types/dompurify": "^3.2.0",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"npm-run-all2": "^9.0.2",
"pagefind": "^1.5.0"
},
"engines": {
"node": ">=24.0.0"
},
"pnpm": {
"overrides": {
"@babel/core@<7.29.6": "7.29.6",
"ajv@<8.17.1": "8.17.1",
"brace-expansion@<2.1.4": "2.1.4",
"cross-spawn@>=7.0.0 <7.0.5": "7.0.5",
"defu@<6.1.5": "6.1.5",
"devalue@<5.8.1": "5.8.1",
"esbuild@>=0.27.3 <0.28.1": "0.28.1",
"fast-uri@<3.1.5": "3.1.5",
"fast-xml-builder@<1.1.7": "1.1.7",
"fast-xml-parser@<5.7.0": "5.7.0",
"glob@>=10.2.0 <10.5.0": "10.5.0",
"h3@<1.15.9": "1.15.9",
"immutable@<4.3.8": "4.3.8",
"immutable@>=5.0.0 <5.1.8": "5.1.8",
"js-yaml@>=4.0.0 <4.3.1": "4.3.1",
"mdast-util-to-hast@<13.2.1": "13.2.1",
"minimatch@>=3.0.0 <3.1.4": "3.1.4",
"minimatch@>=4.0.0 <9.0.9": "9.0.9",
"nanoid@<3.3.18": "3.3.18",
"picomatch@>=2.0.0 <2.3.2": "2.3.2",
"picomatch@>=4.0.0 <4.0.4": "4.0.4",
"postcss@<8.5.23": "8.5.23",
"sharp@<0.35.0": "0.35.0",
"shell-quote@<1.9.0": "1.9.0",
"smol-toml@<1.6.1": "1.6.1",
"svgo@<3.3.3": "3.3.3",
"svgo@>=4.0.0 <4.0.2": "4.0.2",
"vite@>=6.0.0 <6.4.3": "6.4.3",
"yaml@>=2.0.0 <2.8.3": "2.8.3"
}
}
}