-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.68 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "astro-simply",
"version": "1.0.0",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build && jampack ./dist && npx pagefind --site dist",
"preview": "astro preview",
"sync": "astro sync",
"astro": "astro",
"format:check": "prettier --check . --plugin=prettier-plugin-astro",
"format": "prettier --write . --plugin=prettier-plugin-astro",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"dependencies": {
"@astrojs/markdown-remark": "^5.3.0",
"@astrojs/mdx": "^3.1.7",
"@astrojs/react": "^3.6.2",
"@astrojs/rss": "^4.0.9",
"@astrojs/sitemap": "^3.1.6",
"@fontsource-variable/inter": "^5.1.0",
"@fontsource/pt-serif": "^5.1.0",
"@giscus/react": "^3.0.0",
"@hbsnow/rehype-sectionize": "^1.0.7",
"@iconify-json/cbi": "^1.2.5",
"@iconify-json/devicon-plain": "^1.2.4",
"@iconify-json/fa6-brands": "^1.2.1",
"@iconify-json/fa6-solid": "^1.2.1",
"@iconify-json/fxemoji": "^1.2.0",
"@jop-software/astro-cookieconsent": "^3.0.1",
"@remark-embedder/cache": "^2.1.0",
"@remark-embedder/core": "^3.0.3",
"astro": "^4.16.8",
"astro-auto-import": "^0.4.2",
"astro-dynamic-import": "^1.1.1",
"astro-icon": "^1.1.1",
"date-fns": "^4.1.0",
"dotenv": "^16.4.5",
"happy-dom": "^15.11.0",
"mdast-util-to-string": "^4.0.0",
"medium-zoom": "^1.1.0",
"metascraper": "^5.45.24",
"metascraper-author": "^5.45.25",
"metascraper-description": "^5.45.25",
"metascraper-image": "^5.45.25",
"metascraper-logo": "^5.45.22",
"metascraper-logo-favicon": "^5.45.22",
"metascraper-publisher": "^5.45.25",
"metascraper-title": "^5.45.25",
"metascraper-url": "^5.45.25",
"node-fetch": "^3.3.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"remark-oembed": "^1.2.2",
"remark-toc": "^9.0.0",
"rough-notation": "^0.5.1",
"sanitize-html": "^2.13.1",
"sharp": "^0.33.5",
"tiny-slider": "^2.9.4",
"typescript": "^5.6.2",
"vanilla-cookieconsent": "^3.0.1",
"zod": "^3.23.4"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
],
"!(*.{js,md})": "prettier --write --ignore-unknown"
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@divriots/jampack": "^0.28.0",
"@eslint/js": "^9.13.0",
"@shikijs/transformers": "^1.16.2",
"@types/eslint__js": "^8.42.3",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.7.4",
"@types/remark-oembed": "^1.2.4",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"astro-eslint-parser": "^1.0.3",
"esbuild": "^0.24.0",
"eslint": "^9.14.0",
"eslint-plugin-astro": "^1.3.0",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-regexp": "^2.6.0",
"globals": "^15.11.0",
"globby": "^14.0.2",
"lint-staged": "^15.2.10",
"only-allow": "^1.2.1",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.8",
"turbo": "^2.1.2",
"typescript": "~5.6.2",
"typescript-eslint": "^8.6.0"
}
}