-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.23 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
108
109
110
{
"name": "@eligundry/eligundry.com",
"type": "module",
"version": "6.0.0",
"license": "MIT",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build --verbose",
"preview": "astro preview",
"astro": "astro",
"prettier": "prettier -w .",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx,.astro,.mdx",
"astro-check": "astro check",
"type-check": "tsc --noEmit",
"test": "vitest",
"drizzle:migration:generate": "drizzle-kit generate:sqlite --out ./migrations --schema ./src/lib/database/schema.ts"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"bracketSpacing": true
},
"dependencies": {
"@astro-community/astro-embed-youtube": "^0.4.0",
"@astrojs/mdx": "^0.19.7",
"@astrojs/netlify": "^2.5.0",
"@astrojs/partytown": "^1.2.3",
"@astrojs/preact": "^2.2.1",
"@astrojs/tailwind": "^4.0.0",
"@atproto/api": "^0.4.3",
"@libsql/client": "^0.14.0",
"@netlify/functions": "^1.6.0",
"@react-hookz/web": "^23.1.0",
"@tailwindcss/typography": "^0.5.9",
"astro": "^2.9.3",
"astro-fontaine": "^1.0.1",
"astro-seo": "^0.7.5",
"async-retry": "^1.3.3",
"axios": "^1.4.0",
"axios-cache-interceptor": "^1.2.0",
"basic-auth": "^2.0.1",
"cache-manager": "^5.2.3",
"cache-manager-better-sqlite3": "^1.1.2",
"chart.js": "^4.3.0",
"chartjs-adapter-date-fns": "^3.0.0",
"chartjs-chart-sankey": "^0.12.0",
"csv-parse": "^5.4.0",
"daisyui": "^2.51.6",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.0",
"delegated-events": "^1.1.2",
"drizzle-orm": "^0.27.2",
"fast-average-color-node": "^2.6.0",
"feed": "^4.2.2",
"image-size": "^1.0.2",
"jsdom": "^22.1.0",
"lastfm-typed": "^2.1.0",
"lodash": "^4.17.21",
"markdown-to-txt": "^2.0.1",
"postcss": "^8.4.26",
"postcss-import": "^15.1.0",
"postcss-nesting": "^12.0.0",
"preact": "^10.16.0",
"react-chartjs-2": "^5.2.0",
"react-icons": "^4.10.1",
"reading-time": "^1.5.0",
"rehype-accessible-emojis": "^0.3.2",
"rehype-prism-plus": "^1.6.1",
"rehype-slug": "^5.1.0",
"remark": "^14.0.3",
"remark-comment": "^1.0.0",
"remark-excerpt": "^1.0.0-beta.1",
"remark-inline-links": "^6.0.1",
"remark-parse": "^10.0.2",
"remark-unwrap-images": "^3.0.1",
"sharp": "^0.32.3",
"sitemap": "^7.1.1",
"tailwindcss": "^3.3.3",
"theme-change": "^2.5.0",
"ts-dedent": "^2.2.0",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@originjs/vite-plugin-commonjs": "^1.0.3",
"@types/async-retry": "^1.4.5",
"@types/basic-auth": "^1.1.3",
"@types/jsdom": "^21.1.1",
"@types/lodash": "^4.14.195",
"@types/react": "^18.2.15",
"@typescript-eslint/parser": "^6.1.0",
"drizzle-kit": "^0.19.10",
"eslint": "^8.45.0",
"eslint-plugin-astro": "^0.27.2",
"eslint-plugin-mdx": "^2.1.0",
"fontaine": "^0.3.1",
"netlify-cli": "^15.9.1",
"netlify-plugin-cache": "^1.0.3",
"prettier": "^3.0.0",
"simple-git": "^3.19.1",
"vitest": "^0.33.0"
},
"overrides": {
"react": "npm:@preact/compat@latest",
"react-dom": "npm:@preact/compat@latest",
"better-sqlite3": "11.5.0"
}
}