-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.13 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
{
"name": "my-astro-blog",
"version": "3.0.0",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build && jampack ./dist",
"build:vercel": "astro check && astro build && jampack .vercel/output/static",
"preview": "astro preview",
"sync": "astro sync",
"astro": "astro",
"format:check": "prettier --check .",
"format": "prettier --write .",
"cz": "cz",
"prepare": "husky install",
"lint": "eslint .",
"test": "vitest"
},
"dependencies": {
"@astrojs/mdx": "^2.2.2",
"@astrojs/rss": "^4.0.5",
"@astrojs/vercel": "^7.5.0",
"@jsdevtools/rehype-toc": "^3.0.2",
"@resvg/resvg-js": "^2.4.1",
"@vercel/analytics": "^1.1.1",
"@vercel/kv": "^1.0.0",
"@vercel/speed-insights": "^1.0.8",
"astro": "^4.5.12",
"fuse.js": "^6.6.2",
"github-slugger": "^2.0.0",
"mdast-util-find-and-replace": "^3.0.1",
"mdast-util-to-string": "^4.0.0",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-external-links": "^3.0.0",
"rehype-slug": "^6.0.0",
"satori": "^0.10.8",
"tailwindcss": "^3.3.3",
"typescript": "^5.3.2"
},
"devDependencies": {
"@astrojs/check": "^0.5.10",
"@astrojs/react": "^3.1.0",
"@astrojs/sitemap": "^3.1.2",
"@astrojs/tailwind": "^5.1.0",
"@divriots/jampack": "^0.22.1",
"@tailwindcss/typography": "^0.5.10",
"@types/github-slugger": "^1.3.0",
"@types/react": "^18.2.22",
"@typescript-eslint/parser": "^6.7.3",
"astro-eslint-parser": "^0.15.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.50.0",
"eslint-plugin-astro": "^0.29.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"prettier-plugin-astro": "^0.12.0",
"prettier-plugin-tailwindcss": "^0.5.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"vitest": "^1.0.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,mdx,json}": [
"prettier --plugin-search-dir=. --write"
]
}
}