-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.18 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.18 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
{
"name": "furystack.github.io",
"description": "FuryStack Home Page",
"version": "0.0.0",
"private": true,
"type": "module",
"author": "Gallay Lajos <gallay.lajos@gmail.com>",
"license": "MIT",
"scripts": {
"check": "astro check",
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"prepare": "husky"
},
"lint-staged": {
"*.{js,ts,astro}": "eslint --fix",
"*": "prettier --write --ignore-unknown"
},
"engines": {
"node": ">=22.0.0"
},
"packageManager": "yarn@4.13.0",
"dependencies": {
"@astrojs/check": "^0.9.6",
"@astrojs/rss": "^4.0.15",
"@astrojs/sitemap": "^3.7.0",
"astro": "^5.18.0",
"date-fns": "^4.1.0",
"remark-smartypants": "^3.0.2",
"sharp": "^0.34.5"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.3.3",
"eslint": "^10.0.2",
"eslint-plugin-astro": "^1.6.0",
"husky": "^9.1.7",
"lint-staged": "^16.3.2",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
}
}