-
Notifications
You must be signed in to change notification settings - Fork 828
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.49 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
{
"name": "elixir-website",
"private": true,
"type": "module",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"check": "pnpm exec biome check --write",
"lint": "pnpm exec biome check",
"typecheck": "astro check",
"test": "playwright test",
"test:smoke": "playwright test tests/smoke.spec.ts",
"test:visual": "playwright test tests/visual.spec.ts",
"test:a11y": "playwright test tests/a11y.spec.ts",
"assets:optimize": "node scripts/optimize-svgs.mjs",
"prepare": "husky"
},
"dependencies": {
"@astrojs/mdx": "4.3.0",
"@astrojs/react": "4.4.2",
"@astrojs/sitemap": "3.7.0",
"@shikijs/core": "3.23.0",
"@shikijs/engine-javascript": "3.23.0",
"@shikijs/langs": "3.23.0",
"@shikijs/themes": "3.23.0",
"@shikijs/types": "3.23.0",
"@tailwindcss/typography": "0.5.19",
"@tailwindcss/vite": "4.1.14",
"astro": "5.16.13",
"cva": "1.0.0-beta.4",
"react": "19.2.0",
"react-dom": "19.2.0",
"sharp": "0.35.4",
"tailwind-merge": "3.3.1",
"tailwindcss": "4.1.14"
},
"devDependencies": {
"@astrojs/check": "^0.9.9",
"@axe-core/playwright": "4.10.2",
"@biomejs/biome": "2.3.11",
"@playwright/test": "1.59.1",
"@types/node": "24.7.2",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"husky": "9.1.7",
"svgo": "3.3.5",
"typescript": "5.9.3"
},
"packageManager": "pnpm@9.15.0"
}