-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathpackage.json
53 lines (53 loc) · 1.6 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
{
"name": "astros",
"type": "module",
"version": "1.0.1",
"private": true,
"scripts": {
"dev": "astro dev --host",
"start": "astro dev",
"build": "astro build",
"build:localized": "pnpm run i18n:generate && pnpm run build",
"preview": "astro preview",
"astro": "astro",
"article:generate": "node ./scripts/generate-article.js",
"i18n:generate": "astro-i18next generate && pnpm run script:change-language-in-dynamic-pages",
"script:change-language-in-dynamic-pages": "node ./scripts/change-language-in-dynamic-pages.js",
"pwa:generate-assets": "pwa-assets-generator --preset minimal public/logo.svg"
},
"dependencies": {
"@astrojs/alpinejs": "^0.4.0",
"@astrojs/rss": "^4.0.5",
"@astrojs/sitemap": "^3.1.2",
"@astrojs/tailwind": "^5.1.0",
"@fontsource-variable/inter": "^5.0.17",
"@types/alpinejs": "^3.13.10",
"alpinejs": "^3.13.7",
"astro": "^4.5.12",
"astro-i18next": "^1.0.0-beta.21",
"astro-icon": "^1.1.0",
"astro-seo": "^0.8.3",
"bad-words": "^3.0.4",
"dotenv": "^16.4.5",
"openai": "^4.31.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"rss-parser": "^3.13.0",
"tailwindcss": "^3.4.3"
},
"devDependencies": {
"@biomejs/biome": "1.6.3",
"@iconify-json/bx": "^1.1.10",
"@iconify-json/carbon": "^1.1.31",
"@iconify-json/fluent": "^1.1.51",
"@iconify-json/ion": "^1.1.17",
"@iconify-json/mdi": "^1.1.64",
"@iconify-json/tabler": "^1.1.109",
"@tailwindcss/typography": "^0.5.12",
"@vite-pwa/assets-generator": "^0.2.4",
"@vite-pwa/astro": "^0.3.1",
"rehype": "^13.0.1",
"sharp": "^0.33.3",
"workbox-window": "^7.0.0"
}
}