forked from withastro/astro.build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.42 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
{
"name": "@example/minimal",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"format": "run-s format:*",
"format:prettier": "prettier -w .",
"format:eslint": "eslint --fix \"src/**/*.{js,astro}\"",
"manual:update:contributors": "node -r dotenv/config ./scripts/update-contributors.mjs",
"update:integrations": "node -r dotenv/config ./scripts/update-integrations.mjs",
"update:monorepo": "node -r dotenv/config ./scripts/update-monorepo.mjs",
"update:sponsors": "node -r dotenv/config ./scripts/update-sponsors.mjs",
"update:themes": "node -r dotenv/config ./scripts/update-themes.mjs",
"nightly": "run-s update:*"
},
"devDependencies": {
"@astrojs/image": "0.11.4",
"@astrojs/mdx": "^0.11.6",
"@astrojs/prefetch": "0.1.1",
"@astrojs/rss": "^1.0.3",
"@astrojs/site-kit": "github:withastro/site-kit",
"@astrojs/sitemap": "^1.0.0",
"@astrojs/tailwind": "^2.1.2",
"@netlify/functions": "^1.3.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/line-clamp": "^0.4.2",
"@tailwindcss/typography": "^0.5.8",
"@types/busboy": "^1.5.0",
"@types/node": "^18.11.9",
"@types/quill": "^2.0.9",
"@types/sharp": "^0.31.0",
"@typescript-eslint/parser": "^5.43.0",
"astro": "1.6.8",
"astro-icon": "^0.8.0",
"astro-remote": "^0.2.3",
"astro-webfinger": "^1.2.0",
"clsx": "^1.2.1",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"eslint": "^8.27.0",
"eslint-plugin-astro": "^0.21.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"http-cache-semantics": "^4.1.0",
"image-size": "^1.0.2",
"micromorph": "^0.3.1",
"netlify-cli": "^12.1.1",
"node-fetch": "^3.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"prettier-plugin-astro": "^0.7.0",
"quill": "^1.3.7",
"sharp": "^0.31.2",
"simple-astro-seo": "^0.1.3",
"smartypants": "^0.1.6",
"tailwindcss": "^3.2.4",
"zod": "^3.19.1"
},
"dependencies": {
"@astrojs/preact": "^1.2.0",
"@tailwindcss/container-queries": "^0.1.0",
"busboy": "^1.6.0",
"preact": "^10.11.2"
}
}