generated from danielcgilibert/blog-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.77 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
69
70
71
{
"name": "blog-template",
"type": "module",
"version": "1.1.0",
"description": "A template for creating a blog with Astro",
"author": "danielcgilibert",
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/danielcgilibert/blog-template"
},
"keywords": [
"astro",
"astrojs",
"astro-template",
"astro-blog",
"astro-b"
],
"bugs": {
"url": "https://github.com/danielcgilibert/blog-template/issues"
},
"scripts": {
"dev": "tinacms dev -c 'astro dev'",
"start": "astro dev",
"build": "astro build",
"sync": "astro sync",
"preview": "astro preview",
"postbuild": "pagefind --site dist",
"format:check": "prettier --plugin-search-dir=. --check .",
"format": "prettier --plugin-search-dir=. --write .",
"lint": "eslint .",
"pre-commit": "lint-staged",
"prepare": "husky install"
},
"dependencies": {
"@astrojs/rss": "3.0.0",
"astro": "3.2.3"
},
"devDependencies": {
"tinacms": "^1.5.21",
"@tinacms/cli": "^1.5.30",
"@astrojs/mdx": "1.1.1",
"@astrojs/sitemap": "3.0.1",
"@astrojs/tailwind": "5.0.1",
"@pagefind/default-ui": "^1.0.3",
"@tailwindcss/typography": "0.5.10",
"@typescript-eslint/parser": "^6.7.4",
"clsx": "2.0.0",
"eslint": "^8.51.0",
"eslint-plugin-astro": "^0.29.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"mdast-util-to-string": "^4.0.0",
"motion": "^10.16.4",
"pagefind": "^1.0.3",
"prettier": "^3.0.3",
"prettier-config-standard": "^7.0.0",
"prettier-plugin-astro": "^0.12.0",
"reading-time": "^1.5.0",
"slugify": "^1.6.6",
"tailwind-merge": "1.14.0",
"tailwindcss": "3.3.3",
"typescript": "^5.2.2"
},
"lint-staged": {
"*.{astro,js,jsx,ts,tsx,md,mdx,json}": [
"prettier --write --plugin-search-dir=."
]
}
}