forked from kyoto-tech/kyoto-tech.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.43 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
{
"name": "site-2",
"type": "module",
"version": "0.0.1",
"scripts": {
"astro": "astro",
"astrocheck": "astro check",
"build": "npm run feeds:pull:stale-ok && astro build",
"check": "npm run lint; npm run tsc; npm run astrocheck; npm run images:check; npm run knip",
"dev": "astro dev",
"feeds:pull": "node scripts/fetch-feeds.mjs",
"feeds:pull:stale-ok": "node scripts/fetch-feeds.mjs --stale-ok",
"images:optimize": "node scripts/optimize-images.mjs",
"images:check": "node scripts/optimize-images.mjs --check",
"knip": "knip",
"lint": "eslint . --ext .js,.mjs,.ts,.tsx,.astro --no-warn-ignored",
"preview": "astro preview",
"tsc": "tsc --noEmit"
},
"dependencies": {
"@astrojs/check": "^0.9.5",
"@astrojs/mdx": "^4.3.10",
"@astrojs/react": "^4.4.2",
"@astrojs/sitemap": "^3.6.0",
"@tailwindcss/vite": "^4.1.17",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"astro": "^5.15.8",
"marked": "^17.0.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-icons": "^5.5.0",
"rss-parser": "^3.13.0",
"tailwindcss": "^4.1.17"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.1",
"@typescript-eslint/parser": "^8.46.4",
"eslint": "^9.39.1",
"eslint-plugin-astro": "^1.5.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"knip": "^5.70.1",
"sharp": "^0.34.5",
"typescript": "^5.9.3"
}
}