-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 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
69
70
71
72
73
74
75
76
77
78
79
80
{
"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": "npx 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/node": "^8.3.3",
"@astrojs/react": "^3.6.2",
"@astrojs/rss": "4.0.1",
"astro": "^4.15.3",
"astro-font": "^0.0.72",
"dotenv": "^16.4.5",
"mailgun-js": "^0.22.0",
"mailgun.js": "^10.2.3",
"pnpm": "^9.9.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@astrojs/mdx": "^3.1.5",
"@astrojs/sitemap": "^3.1.6",
"@astrojs/tailwind": "^5.1.0",
"@pagefind/default-ui": "^1.1.1",
"@tailwindcss/typography": "0.5.10",
"@tinacms/cli": "^1.6.2",
"@typescript-eslint/parser": "^6.21.0",
"clsx": "2.0.0",
"eslint": "^8.57.0",
"eslint-plugin-astro": "^0.31.4",
"eslint-plugin-jsx-a11y": "^6.10.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.10",
"mdast-util-to-string": "^4.0.0",
"motion": "^10.18.0",
"pagefind": "^1.1.1",
"prettier": "^3.3.3",
"prettier-config-standard": "^7.0.0",
"prettier-plugin-astro": "^0.12.3",
"reading-time": "^1.5.0",
"slugify": "^1.6.6",
"tailwind-merge": "2.0.0",
"tailwindcss": "3.3.5",
"tinacms": "^1.6.7",
"typescript": "^5.5.4"
},
"lint-staged": {
"*.{astro,js,jsx,ts,tsx,md,mdx,json}": [
"prettier --write --plugin-search-dir=."
]
}
}