-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.26 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
{
"name": "egashira.dev",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && tsc --noEmit && astro build",
"preview": "astro preview",
"astro": "astro",
"prepare": "husky install",
"eslint": "eslint ./src --max-warnings 0",
"eslint:fix": "eslint ./src --fix --max-warnings 0",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"lint": "lint-staged --config .lintstagedrc.js",
"archive-images": "node ./scripts/archive-images.mjs",
"new": "node --loader ts-node/esm ./scripts/new-post.ts"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/rss": "^4.0.9",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/tailwind": "^5.1.4",
"@notionhq/client": "^2.2.15",
"@tailwindcss/typography": "^0.5.15",
"astro": "^4.16.18",
"astro-icon": "^1.1.4",
"axios": "^1.6.5",
"github-slugger": "^2.0.0",
"hastscript": "^9.0.0",
"html-entities": "^2.5.2",
"open-graph-scraper": "^6.8.3",
"qs": "^6.13.1",
"rehype-autolink-headings": "^6.1.1",
"rehype-katex": "^7.0.1",
"rehype-prism-plus": "^2.0.0",
"rehype-slug": "^6.0.0",
"remark-emoji": "^5.0.1",
"remark-footnotes": "^4.0.1",
"remark-link-card": "^1.3.1",
"remark-math": "^6.0.0",
"tailwindcss": "^3.4.17",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@astrojs/partytown": "^2.1.3",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@inquirer/prompts": "^7.1.0",
"@types/eslint-config-prettier": "^6.11.3",
"@types/sharp": "^0.32.0",
"eslint": "^9.17.0",
"eslint-config-flat-gitignore": "^0.3.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^1.3.1",
"globals": "^15.13.0",
"gray-matter": "^4.0.3",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.9",
"satori": "^0.10.11",
"sharp": "^0.33.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0"
},
"packageManager": "npm@9.5.1",
"engines": {
"npm": ">=9.5.1",
"yarn": "use npm!",
"pnpm": "use npm!"
}
}