-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
68 lines (68 loc) · 2 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": "sveltekit-blog-mdx",
"version": "2.0.0",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check",
"check:watch": "svelte-check --watch",
"lint": "prettier --check --plugin=prettier-plugin-svelte . && eslint .",
"lint:scss": "stylelint \"src/**/*.{css,scss,svelte}\"",
"format": "prettier --write --plugin=prettier-plugin-svelte .",
"generate:images": "node ./generate-responsive-image-data.js",
"generate:sitemap": "node ./generate-sitemap.js",
"check:formatting": "prettier --check --plugin=prettier-plugin-svelte ."
},
"devDependencies": {
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.15.0",
"@fontsource/lato": "^5.1.0",
"@fontsource/lora": "^5.1.0",
"@fontsource/source-sans-pro": "^5.1.0",
"@sveltejs/adapter-static": "3.0.6",
"@sveltejs/kit": "2.8.4",
"@types/object-hash": "^3.0.6",
"commitlint": "^19.6.0",
"dayjs": "^1.11.13",
"dompurify": "^3.2.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.46.0",
"front-matter": "^4.0.2",
"globals": "^15.12.0",
"husky": "^9.1.7",
"iconify-icon": "^1.0.8",
"object-hash": "^3.0.0",
"postcss": "^8.4.49",
"postcss-html": "^1.7.0",
"prettier": "~3.4.1",
"prettier-plugin-svelte": "^3.3.2",
"sass": "^1.81.0",
"sharp": "^0.33.5",
"stylelint": "^16.10.0",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-scss": "^6.10.0",
"svelte": "^5.2.8",
"svelte-check": "^4.1.0",
"svelte-preprocess": "^6.0.3",
"typescript-eslint": "^8.16.0",
"vanilla-lazyload": "^17.9.0",
"vite": "^5.4.11",
"vite-imagetools": "^7.0.4",
"yaml": "^2.6.1"
},
"repository": {
"type": "git",
"url": "https://github.com/rodneylab/sveltekit-blog-mdx"
},
"bugs": {
"url": "https://github.com/rodneylab/sveltekit-blog-mdx/issues"
},
"type": "module",
"dependencies": {
"@rodneylab/parsedown": "^1.4.3",
"@sveltejs/vite-plugin-svelte": "^4.0.2",
"jsdom": "^25.0.1"
}
}