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
|
{
"type": "module",
"private": "true",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint .",
"format": "prettier ./**/* --check",
"format--write": "prettier ./**/* --write"
},
"dependencies": {
"astro": "^2.9.7"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.46.0",
"eslint-plugin-astro": "^0.28.0",
"prettier": "^3.0.0",
"prettier-plugin-astro": "^0.11.0"
}
}
|