-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.21 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
{
"name": "site",
"private": true,
"type": "module",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && tsc --noEmit && astro build",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --plugin-search-dir=. --write src",
"lint": "eslint src",
"lint:fix": "eslint src --fix"
},
"dependencies": {
"@astrojs/mdx": "^0.19.7",
"@astrojs/prefetch": "^0.2.3",
"@astrojs/rss": "^2.4.3",
"@astrojs/sitemap": "^1.3.3",
"@astrojs/tailwind": "^3.1.3",
"astro": "^2.7.0",
"astro-compress": "^1.1.47",
"astro-icon": "^0.8.1",
"astro-robots-txt": "^0.5.0",
"mdast-util-to-string": "^3.2.0",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-slug": "^5.1.0",
"tailwindcss": "^3.3.2",
"typescript": "^5.1.3"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"@typescript-eslint/parser": "^5.60.1",
"eslint": "^8.43.0",
"eslint-plugin-astro": "^0.27.2",
"eslint-plugin-jsx-a11y": "^6.7.1",
"prettier": "^2.8.8",
"prettier-plugin-astro": "^0.9.1",
"prettier-plugin-tailwindcss": "^0.3.0"
}
}