forked from nexxeln/nexxel.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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
{
"name": "blog",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format:content": "npx prettier --write ./src/content/blog"
},
"dependencies": {
"@astrojs/mdx": "^1.1.0",
"@astrojs/rss": "^3.0.0",
"@astrojs/sitemap": "^3.0.0",
"@astrojs/solid-js": "^3.0.1",
"@astrojs/vercel": "^5.1.0",
"@astrojs/vue": "^3.0.0",
"@loglib/tracker": "^0.8.0",
"astro": "^3.2.0",
"markdown-it": "^13.0.2",
"sanitize-html": "^2.11.0",
"solid-js": "^1.7.12",
"vue": "^3.3.4",
"zod": "^3.22.2"
},
"devDependencies": {
"@antfu/eslint-config": "1.0.0-beta.18",
"@iconify-json/mdi": "^1.1.54",
"@iconify-json/radix-icons": "^1.1.11",
"@iconify-json/tabler": "^1.1.93",
"@types/markdown-it": "^13.0.2",
"@types/sanitize-html": "^2.9.1",
"@typescript-eslint/parser": "^6.7.3",
"@unocss/eslint-config": "^0.56.4",
"@unocss/reset": "^0.56.4",
"eslint": "^8.50.0",
"eslint-plugin-astro": "^0.29.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"unocss": "^0.56.4"
}
}