-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.84 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
{
"name": "blog",
"private": true,
"type": "module",
"version": "0.0.1",
"license": "MIT",
"packageManager": "[email protected]",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"style": "prettier -w \"src/**/*.{astro,tsx}\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@astrojs/cloudflare": "^9.1.0",
"astro": "^4.5.4",
"date-fns": "^3.5.0",
"disqusjs": "^3.0.3-canary.1",
"medium-zoom": "^1.1.0",
"solid-js": "^1.8.15"
},
"devDependencies": {
"@astrojs/mdx": "^2.2.0",
"@astrojs/node": "^8.2.3",
"@astrojs/rss": "^4.0.5",
"@astrojs/sitemap": "^3.1.1",
"@astrojs/solid-js": "^4.0.1",
"@iconify-json/fa-brands": "^1.1.8",
"@iconify-json/ri": "^1.1.20",
"@types/hast": "^3.0.4",
"@types/mdast": "^4.0.3",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@unocss/reset": "^0.58.6",
"astro-eslint-parser": "^0.16.3",
"eslint": "^8.57.0",
"eslint-plugin-astro": "^0.31.4",
"hastscript": "^9.0.0",
"mdast-util-toc": "^7.0.0",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0",
"refractor": "^4.8.1",
"rehype-autolink-headings": "^7.1.0",
"rehype-prism-diff": "^1.1.2",
"rehype-prism-plus": "^2.0.0",
"rehype-rewrite": "^4.0.2",
"rehype-slug": "^6.0.0",
"remark-directive": "^3.0.0",
"remark-directive-rehype": "^0.4.2",
"remark-emoji": "^4.0.1",
"remark-flexible-code-titles": "^1.1.4",
"typescript": "^5.4.2",
"unified": "^11.0.4",
"unocss": "^0.58.6",
"vfile": "^6.0.1"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"vite",
"react",
"@babel/core",
"rollup"
]
}
}
}