-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (62 loc) · 1.79 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": "my-portfolio",
"description": "My custom made portfolio and blog.",
"version": "3.0.0",
"private": true,
"keywords": [],
"author": "Néstor López",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nsttt/my-portfolio"
},
"scripts": {
"dev": "astro dev",
"build": "astro build",
"lint": "astro check",
"preview": "astro preview",
"fix": "prettier --write . --plugin=prettier-plugin-astro",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/mdx": "^4.0.3",
"@astrojs/prefetch": "^0.4.1",
"@astrojs/rss": "^4.0.10",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/solid-js": "^5.0.1",
"@astrojs/tailwind": "^5.1.4",
"@astrojs/ts-plugin": "^1.10.4",
"clsx": "^2.1.1",
"markdown-it": "^14.1.0",
"mdast-util-to-string": "^4.0.0",
"reading-time": "^1.5.0",
"sanitize-html": "^2.14.0",
"sharp": "^0.33.5",
"solid-js": "^1.9.3"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/typography": "^0.5.15",
"@types/eslint": "^9.6.1",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.10.2",
"@types/sanitize-html": "^2.13.0",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"astro": "5.1.1",
"autoprefixer": "^10.4.20",
"dayjs": "^1.11.13",
"eslint": "^9.17.0",
"eslint-plugin-astro": "^1.3.1",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.9",
"rehype-autolink-headings": "^7.1.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2"
}
}