-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.62 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.62 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
{
"name": "astro-starter-pro",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"format": "prettier --write .",
"fix": "npm run format && npm run lint",
"test": "vitest",
"check": "astro check",
"typecheck": "tsc --noEmit",
"build-preview": "npm run build && npm run preview",
"prepare": "husky"
},
"dependencies": {
"@astrojs/check": "^0.9.6",
"@astrojs/mdx": "^4.3.13",
"@astrojs/rss": "^4.0.15",
"@astrojs/sitemap": "^3.6.1",
"@iconify-json/lucide": "^1.2.86",
"@iconify-json/tabler": "^1.2.26",
"@tailwindcss/vite": "^4.1.18",
"@vercel/analytics": "^1.6.1",
"@vercel/speed-insights": "^1.3.1",
"astro": "^5.16.8",
"astro-icon": "^1.1.5",
"remark-reading-time": "^2.0.2",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.19",
"@types/node": "^25.0.6",
"@typescript-eslint/parser": "^8.52.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-astro": "^1.5.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"globals": "^17.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.3.2",
"prettier": "^3.7.4",
"prettier-plugin-astro": "^0.14.1",
"typescript-eslint": "^8.52.0",
"vitest": "^4.0.16"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,astro}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,mdx,css}": [
"prettier --write"
]
}
}