-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 968 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 968 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
{
"name": "astro-minimal-setup",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint --ext .astro,.js,.ts src",
"format": "prettier --write \"src/**/*.{astro,js,ts}\"",
"format:check": "prettier --check \"src/**/*.{astro,js,ts}\"",
"fix": "eslint --fix --ext .astro,.js,.ts src"
},
"dependencies": {
"@astrojs/check": "^0.4.1",
"astro": "^4.2.1"
},
"devDependencies": {
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"eslint-plugin-astro": "^0.31.3",
"eslint-plugin-jsx-a11y": "^6.8.0",
"prettier": "^3.2.4",
"prettier-plugin-astro": "^0.13.0",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"typescript": "^5.3.3"
}
}