-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 975 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 975 Bytes
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
{
"name": "verdant-visual",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"dependencies": {
"@astrojs/mdx": "^4.3.4",
"@astrojs/rss": "^4.0.12",
"@astrojs/sitemap": "^3.5.1",
"astro": "^5.13.3",
"sharp": "^0.34.2"
},
"devDependencies": {
"@typescript-eslint/parser": "^8.40.0",
"eslint": "^9.34.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"prettier": "3.6.2",
"prettier-plugin-astro": "0.14.1"
},
"lint-staged": {
"*.{js,ts,astro}": [
"eslint --fix",
"prettier --write"
],
"*.{md,json,css}": [
"prettier --write"
]
}
}