forked from zankhq/astro-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.61 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
{
"name": "create-astro-starter",
"type": "module",
"version": "0.13.4",
"author": "Giulio Zanchetta",
"description": "Astro starter template with tailwind, alpinejs, localization, blog, CMS, and comments",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/zankhq/astro-starter.git"
},
"bugs": "https://github.com/zankhq/astro-starter/issues",
"homepage": "https://github.com/zankhq/astro-starter",
"files": ["*"],
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "npm run pwa:generate-assets && astro build",
"preview": "astro preview",
"astro": "astro",
"pwa:generate-assets": "pwa-assets-generator --preset minimal public/logo.svg"
},
"dependencies": {
"@astrojs/alpinejs": "^0.4.0",
"@astrojs/mdx": "^3.1.2",
"@astrojs/rss": "^4.0.7",
"@astrojs/sitemap": "^3.1.6",
"@astrojs/tailwind": "^5.1.0",
"@fontsource-variable/inter": "^5.0.18",
"@types/alpinejs": "^3.13.10",
"alpinejs": "^3.14.1",
"astro": "^4.11.3",
"astro-i18n-aut": "^0.7.0",
"tailwindcss": "^3.4.4",
"workbox-window": "^7.1.0"
},
"devDependencies": {
"@vite-pwa/assets-generator": "^0.2.4",
"astro-icon": "^1.1.0",
"astro-seo": "^0.8.4",
"prettier": "^3.3.2",
"sharp": "0.33.4",
"prettier-plugin-astro": "^0.14.0",
"prettier-plugin-tailwindcss": "^0.6.5"
},
"prettier": {
"tabWidth": 4,
"useTabs": true,
"bracketSameLine": true,
"printWidth": 150,
"htmlWhitespaceSensitivity": "ignore",
"plugins": ["prettier-plugin-astro", "prettier-plugin-tailwindcss"]
},
"overrides": {
"sharp": "0.33.4",
"string-width": "4.1.0",
"strip-ansi": "5.2.0"
}
}