-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
52 lines (52 loc) · 1.71 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
{
"name": "astro-blog-markdown",
"version": "0.2.0",
"private": true,
"license": "BSD-3-Clause",
"description": "Astro blog Markdown: starter for fast Astro blog with partial hydration and a spot of Svelte speed. Create a new blog site in minutes",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro telemetry disable && astro build && subfont -ir --root dist",
"preview": "astro preview",
"check": "astro check --fail-on-warnings",
"check:svelte": "svelte-check",
"format": "prettier --write --plugin=prettier-plugin-astro --plugin=prettier-plugin-svelte .",
"lint:css": "stylelint \"src/**/*.{astro,css,svelte}\"",
"prettier:check": "prettier --check --plugin=prettier-plugin-astro --plugin=prettier-plugin-svelte ."
},
"devDependencies": {
"@astrojs/rss": "^4.0.11",
"@astrojs/svelte": "^7.0.3",
"@commitlint/config-conventional": "^19.6.0",
"@iconify/svelte": "^4.2.0",
"@rodneylab/picpack": "^0.1.1",
"astro": "5.1.7",
"autoprefixer": "^10.4.20",
"commitlint": "^19.6.1",
"husky": "^9.1.7",
"postcss": "^8.5.1",
"postcss-html": "^1.8.0",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-svelte": "^3.3.3",
"stylelint": "^16.13.2",
"stylelint-config-recommended": "^15.0.0",
"subfont": "^7.2.1",
"svelte": "^5.19.0",
"svelte-check": "^4.1.4",
"thumbhash": "^0.1.1",
"typescript": "^5.7.3",
"vite": "^6.0.9"
},
"repository": {
"type": "git",
"url": "https://github.com/rodneylab/astro-blog-markdown"
},
"bugs": {
"url": "https://github.com/rodneylab/astro-blog-markdown/issues"
},
"dependencies": {
"@astrojs/check": "^0.9.4"
}
}