generated from danielcgilibert/blog-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.34 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
{
"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",
"@tinacms/cli": "^1.5.30",
"astro": "3.2.3",
"tinacms": "^1.5.21"
},
"devDependencies": {
"@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",
"sass": "^1.70.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=."
]
}
}