-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.05 KB
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": "ankitz007",
"type": "module",
"version": "1.6.2",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"prettier": "prettier --write **/*.{ts,tsx,css,astro} --ignore-path .gitignore",
"postinstall": "patch-package"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/markdown-remark": "^6.3.6",
"@astrojs/mdx": "^4.3.4",
"@astrojs/react": "^4.3.0",
"@astrojs/rss": "^4.0.12",
"@astrojs/sitemap": "^3.5.1",
"@expressive-code/plugin-collapsible-sections": "^0.41.3",
"@expressive-code/plugin-line-numbers": "^0.41.3",
"@iconify-json/lucide": "^1.2.64",
"@tailwindcss/vite": "^4.1.12",
"@types/react": "19.1.11",
"@types/react-dom": "19.1.7",
"astro": "^5.13.3",
"astro-expressive-code": "^0.41.3",
"astro-icon": "^1.1.5",
"astro-mermaid": "^2.0.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"devicon": "^2.17.0",
"lightgallery": "^2.9.0-beta.1",
"lucide-react": "^0.541.0",
"mermaid": "^11.14.0",
"patch-package": "^8.0.0",
"radix-ui": "^1.4.3",
"react": "19.1.1",
"react-dom": "19.1.1",
"rehype-external-links": "^3.0.0",
"rehype-katex": "^7.0.1",
"rehype-pretty-code": "^0.14.1",
"remark-directive-sugar": "^1.1.2",
"remark-emoji": "^5.0.1",
"remark-math": "^6.0.0",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.12",
"typescript": "^5.9.2"
},
"devDependencies": {
"prettier": "^3.6.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-astro-organize-imports": "^0.4.11",
"prettier-plugin-tailwindcss": "^0.6.14"
},
"prettier": {
"semi": false,
"singleQuote": true,
"plugins": [
"prettier-plugin-astro",
"prettier-plugin-tailwindcss",
"prettier-plugin-astro-organize-imports"
],
"overrides": [
{
"files": "*.astro",
"options": {
"parser": "astro"
}
}
]
}
}