-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.88 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "gensobunya-cycle-blog",
"homepage": "https://blog.gensobunya.net/",
"type": "module",
"private": true,
"version": "3.0.0",
"scripts": {
"dev": "bun typegen && wrangler pages dev -- bun --bun astro dev",
"prebuild": "run-p build:*",
"build": "bun typegen && bunx --bun astro build",
"preview": "bun typegen && bun run build && wrangler pages dev ./dist",
"preview:cf": "bun typegen && wrangler pages dev ./dist",
"test": "bun typegen && bunx vitest",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"build:redirect": "bun scripts/redirects.ts",
"typegen": "bunx --bun wrangler types"
},
"dependencies": {
"@astrojs/mdx": "^3.1.3",
"@astrojs/react": "^3.6.1",
"@astrojs/rss": "^4.0.7",
"@astrojs/sitemap": "^3.1.6",
"@astrojs/tailwind": "^5.1.0",
"@braintree/sanitize-url": "^7.1.0",
"@cloudflare/pages-plugin-vercel-og": "^0.1.2",
"@emotion/react": "^11.13.0",
"@iconify-json/mdi": "^1.1.67",
"@tailwindcss/typography": "^0.5.13",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"astro": "^4.15.7",
"astro-auto-import": "^0.4.2",
"astro-icon": "^1.1.0",
"astro-pagefind": "^1.6.0",
"aws4fetch": "^1.0.19",
"daisyui": "^4.12.10",
"date-fns-tz": "^3.1.3",
"framer-motion": "^11.3.19",
"next-share": "^0.27.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.2.1",
"sanitize-html": "^2.13.0",
"swr": "^2.2.5",
"tailwindcss": "^3.4.7",
"unified": "^11.0.5"
},
"devDependencies": {
"@astrojs/check": "^0.8.3",
"@cloudflare/vitest-pool-workers": "^0.5.15",
"@cloudflare/workers-types": "^4.20240806.0",
"@textlint-ja/textlint-rule-no-filler": "^1.1.0",
"@types/bun": "^1.1.6",
"@types/node": "^20.14.13",
"@types/sanitize-html": "^2.11.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^1.2.3",
"eslint-plugin-tailwindcss": "^3.17.4",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.5",
"textlint": "^14.0.4",
"textlint-rule-ja-no-abusage": "^3.0.0",
"textlint-rule-ja-no-redundant-expression": "^4.0.1",
"textlint-rule-no-doubled-conjunction": "^3.0.0",
"textlint-rule-no-doubled-conjunctive-particle-ga": "^3.0.0",
"textlint-rule-no-doubled-joshi": "^5.1.0",
"textlint-rule-no-dropping-the-ra": "^3.0.0",
"textlint-rule-no-hankaku-kana": "^2.0.1",
"textlint-rule-no-mix-dearu-desumasu": "^6.0.2",
"textlint-rule-no-mixed-zenkaku-and-hankaku-alphabet": "^1.0.1",
"textlint-rule-no-todo": "^2.0.1",
"textlint-rule-preset-jtf-style": "^2.3.14",
"typescript": "^5.5.4",
"vitest": "2.0.5",
"wrangler": "^3.80.1"
}
}