-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.65 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
{
"name": "astronova",
"type": "module",
"version": "1.0.0",
"description": "AstroNova - Modern Astro blog theme with elegant design and smooth animations",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint . --ext .ts,.tsx,.astro",
"format": "prettier --write .",
"type-check": "astro check && tsc --noEmit",
"newpost": "node scripts/newpost.js"
},
"dependencies": {
"@astrojs/check": "^0.5.10",
"@astrojs/mdx": "^4.3.13",
"@astrojs/react": "^4.4.2",
"@astrojs/rss": "^4.0.14",
"@astrojs/sitemap": "^3.6.0",
"@astrojs/tailwind": "^6.0.2",
"@tailwindcss/typography": "^0.5.19",
"@vercel/analytics": "^1.6.1",
"astro": "^5.16.6",
"astro-icon": "^1.1.5",
"mermaid": "^11.12.2",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"tailwindcss": "^3.4.19",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.9.3"
},
"devDependencies": {
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"astro-compress": "^2.3.6",
"astro-critters": "^2.2.0",
"eslint": "^8.57.1",
"eslint-plugin-astro": "^0.31.4",
"framer-motion": "^12.23.26",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"prettier": "^3.7.4",
"prettier-plugin-astro": "^0.13.0",
"prettier-plugin-tailwindcss": "^0.5.14"
},
"lint-staged": {
"*.{js,ts,tsx,astro}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}