-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.03 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.03 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
{
"name": "afuh.dev",
"type": "module",
"author": "Axel Fuhrmann",
"license": "MIT",
"version": "4.0.0",
"scripts": {
"dev": "astro dev --host",
"build": "astro build",
"preview": "astro preview --host",
"astro:check": "astro check",
"astro": "astro",
"eslint": "eslint .",
"prepare": "husky install"
},
"dependencies": {
"@astrojs/check": "^0.9.6",
"@astrojs/sitemap": "3.6.0",
"@fontsource/jetbrains-mono": "^5.0.17",
"astro": "^5.16.3",
"autoprefixer": "^10.4.16",
"typescript": "^5.2.2",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-astro": "^0.29.1",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"prettier-plugin-astro": "^0.12.2"
},
"lint-staged": {
"*.{astro,ts}": "eslint --cache --fix"
}
}