-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.35 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
{
"name": "@example/basics",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "npm-run-all --parallel combine:json dev:astro",
"start": "npm-run-all --parallel combine:json dev:astro",
"build": "npm-run-all combine:json build:astro",
"preview": "npm-run-all combine:json preview:astro",
"combine:json": "node scripts/combine-json.js",
"dev:astro": "astro dev",
"build:astro": "astro build",
"preview:astro": "astro preview",
"watch:json": "node scripts/file-watcher.js"
},
"dependencies": {
"@astrojs/alpinejs": "^0.4.0",
"@astrojs/mdx": "^3.1.9",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/tailwind": "^5.1.2",
"@fontsource/inter": "^5.1.0",
"@iconify-json/heroicons-outline": "^1.2.0",
"@iconify-json/uil": "^1.2.1",
"@types/alpinejs": "^3.13.10",
"astro": "^4.16.9",
"astro-color-scheme": "^1.1.5",
"astro-feather-icons": "^1.0.2",
"astro-icon": "^1.1.2",
"astro-seo": "^0.8.4",
"mdast-util-to-string": "^4.0.0",
"reading-time": "^1.5.0",
"rehype-plugin-image-native-lazy-loading": "^1.2.0",
"tailwindcss": "^3.4.14"
},
"devDependencies": {
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/typography": "^0.5.15",
"chokidar": "^4.0.1",
"classnames": "^2.5.1",
"npm-run-all": "^4.1.5",
"sharp": "^0.33.5"
}
}