generated from wanoo21/tailwind-astro-starting-blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.08 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
{
"name": "tailwind-astro-starting-blog",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "node ./scripts/process_tags && astro dev",
"start": "astro dev",
"build": "node ./scripts/process_tags && astro build",
"preview": "astro preview",
"tag": "node ./scripts/process_tags",
"astro": "astro",
"prettier:format": "prettier --write \"**/*.{ts,tsx,js,md,mdx,css,yaml,astro,cjs,mjs,json}\" --plugin=prettier-plugin-astro",
"prettier:check:ci": "prettier --check \"**/*.{ts,tsx,js,md,mdx,css,yaml,astro,cjs,mjs,json}\" --plugin=prettier-plugin-astro",
"eslint:check": "eslint --fix --ext .ts,.tsx,.js,.md,.mdx,.astro .",
"prepare": "husky install"
},
"dependencies": {
"@astrojs/mdx": "^2.1.1",
"@astrojs/rss": "^4.0.5",
"@astrojs/sitemap": "^3.0.5",
"@astrojs/tailwind": "^5.1.0",
"astro": "^4.3.4"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^0.31.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"postcss": "^8.4.33",
"prettier": "^3.2.2",
"prettier-plugin-astro": "^0.12.3",
"prettier-plugin-tailwindcss": "^0.5.11",
"rehype-autolink-headings": "^7.1.0",
"rehype-katex": "^7.0.0",
"rehype-shikiji": "0.10.0-beta.9",
"rehype-slug": "^6.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"remark-reading-time": "^2.0.1",
"remark-smartypants": "^2.1.0",
"remark-stringify": "^11.0.0",
"remark-toc": "^9.0.0",
"sharp": "^0.33.2",
"shikiji": "0.10.0-beta.9",
"shikiji-transformers": "0.10.0-beta.9",
"tailwindcss": "^3.4.1",
"to-vfile": "^8.0.0",
"unified": "^11.0.4",
"vfile": "^6.0.1",
"vfile-matter": "^5.0.0"
}
}