-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.67 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.67 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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "frankshowalter.com",
"type": "module",
"version": "2.0.0",
"scripts": {
"astro": "astro",
"build": "astro build",
"check": "astro check",
"dev": "astro dev",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"knip": "knip",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"stylelint": "stylelint \"src/**/*.css\"",
"stylelint:fix": "stylelint \"src/**/*.css\" --fix",
"preview": "astro preview",
"start": "astro dev",
"update:data": "node scripts/updateData.ts"
},
"dependencies": {
"@astrojs/check": "0.9.8",
"@astrojs/react": "5.0.3",
"@astrojs/sitemap": "3.7.2",
"@tailwindcss/vite": "4.2.2",
"@takumi-rs/core": "1.0.9",
"@takumi-rs/helpers": "1.0.9",
"astro": "6.1.6",
"astro-compressor": "1.3.0",
"pagefind": "1.5.2",
"sharp": "0.34.5",
"tailwindcss": "4.2.2"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/node": "24.12.2",
"eslint": "10.2.0",
"eslint-plugin-astro": "1.7.0",
"eslint-plugin-better-tailwindcss": "4.4.1",
"eslint-plugin-perfectionist": "5.8.0",
"eslint-plugin-separate-type-imports": "git://github.com/fshowalter/eslint-plugin-separate-type-imports.git",
"eslint-plugin-unicorn": "64.0.0",
"knip": "6.4.1",
"prettier": "3.8.2",
"prettier-plugin-astro": "0.14.1",
"stylelint": "17.7.0",
"stylelint-config-standard": "40.0.0",
"stylelint-order": "8.1.1",
"typescript": "6.0.3",
"typescript-eslint": "8.58.2"
},
"engines": {
"node": "24.15.0",
"npm": "11.12.1"
},
"overrides": {
"@astrojs/check": {
"typescript": "$typescript"
}
}
}