-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.79 KB
/
package.json
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
{
"name": "yuheiy.com-v6",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "astro build",
"dev": "concurrently --raw \"npm:dev:*\"",
"dev:astro": "astro dev --host",
"dev:css": "chokidar \"src/styles/**/*.css\" --command \"touch tailwind.config.js\" --debounce 0 --silent",
"fix": "npm run fix:eslint && npm run fix:prettier",
"fix:eslint": "npm run lint:eslint -- --fix",
"fix:prettier": "npm run lint:prettier -- --write",
"postinstall": "patch-package",
"lint": "astro sync && concurrently --raw \"npm:lint:*\"",
"lint:astro": "astro check",
"lint:eslint": "eslint --max-warnings 0",
"lint:prettier": "prettier . --check",
"lint:types": "tsc -b",
"preview": "astro preview",
"test": "vitest"
},
"dependencies": {
"@astrojs/mdx": "3.1.9",
"@astrojs/rss": "4.0.9",
"@astrojs/sitemap": "3.2.1",
"@astrojs/tailwind": "5.1.2",
"@tailwindcss/container-queries": "0.1.1",
"astro": "4.16.8",
"astro-embed": "0.8.0",
"mdast-util-to-string": "4.0.0",
"patch-package": "8.0.0",
"sanitize-html": "2.13.1",
"tiny-invariant": "1.3.3",
"unist-util-select": "5.1.0"
},
"devDependencies": {
"@astrojs/check": "0.9.4",
"@eslint/js": "9.13.0",
"@types/sanitize-html": "2.13.0",
"chokidar-cli": "3.0.0",
"concurrently": "9.0.1",
"eslint": "9.13.0",
"eslint-plugin-astro": "1.3.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-tailwindcss": "3.17.5",
"prettier": "3.3.3",
"prettier-plugin-astro": "0.14.1",
"prettier-plugin-css-order": "2.1.2",
"prettier-plugin-organize-imports": "4.1.0",
"prettier-plugin-tailwindcss": "0.6.8",
"typescript-eslint": "8.12.2",
"vitest": "2.1.4"
},
"engines": {
"node": "22"
}
}