-
Notifications
You must be signed in to change notification settings - Fork 156
/
package.json
71 lines (71 loc) · 2.19 KB
/
package.json
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
{
"name": "@example/minimal",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "astro dev",
"start": "astro dev",
"build": "astro build --remote",
"build:force-db": "WITH_DB=true astro build --remote",
"preview": "astro preview",
"lint": "biome lint .",
"format": "pnpm run format:code && pnpm run format:imports",
"format:code": "biome format . --write && prettier -w \"**/*\" \"!**/*.{md,mdx}\" --ignore-unknown --cache",
"format:imports": "biome check --formatter-enabled=false --write",
"format-unsafe": "biome format . --write --unsafe",
"typecheck": "astro check",
"update:integrations": "node -r dotenv/config ./scripts/update-integrations.mjs",
"update:showcase": "node -r dotenv/config ./scripts/update-showcase.mjs",
"audit:showcase": "node -r dotenv/config ./scripts/audit-showcase.mjs"
},
"dependencies": {
"@astro-community/astro-embed-youtube": "^0.5.3",
"@astrojs/check": "^0.9.3",
"@astrojs/db": "^0.11.4",
"@astrojs/mdx": "^3.1.3",
"@astrojs/netlify": "^5.5.1",
"@astrojs/rss": "^4.0.7",
"@astrojs/site-kit": "github:withastro/site-kit",
"@astrojs/sitemap": "^3.1.6",
"@astrojs/solid-js": "^4.4.1",
"@astrojs/tailwind": "^5.1.0",
"@astrojs/web-vitals": "^0.2.1",
"@biomejs/biome": "1.8.3",
"@iconify-json/ri": "^1.1.20",
"@netlify/plugin-lighthouse": "^6.0.0",
"@types/node": "^20.10.4",
"astro": "^4.14.6",
"astro-expressive-code": "^0.35.6",
"astro-icon": "^0.8.2",
"chart.js": "4.4.1",
"cobe": "^0.6.3",
"date-fns": "^2.30.0",
"dotenv": "^16.3.1",
"motion": "^10.17.0",
"only-allow": "1.2.1",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"sharp": "^0.33.5",
"smartypants": "^0.2.2",
"solid-js": "^1.8.21",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.4",
"xss": "^1.0.15"
},
"devDependencies": {
"@actions/core": "^1.10.1",
"@octokit/graphql": "^7.0.2",
"gray-matter": "^4.0.3",
"linkedom": "^0.16.4",
"mdast-util-from-markdown": "^2.0.1",
"mdast-util-to-string": "^4.0.0",
"p-limit": "^6.1.0",
"puppeteer": "^21.6.0",
"slugify": "^1.6.6",
"tiny-glob": "^0.2.9",
"yaml": "^2.5.1"
},
"packageManager": "[email protected]"
}