-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 998 Bytes
/
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
{
"name": "@sucho/meme-wall",
"version": "5",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "pnpm create-og-image && astro build",
"preview": "astro preview",
"update-media": "node src/fetch-data.mjs",
"create-og-image": "node bin/create-og-image.mjs",
"gh-deploy": "CNAME=memes.sucho.org bin/astro-gh-deploy.sh"
},
"devDependencies": {
"@astrojs/svelte": "^5.0.3",
"astro": "^4.4.1",
"csv-writer": "^1.6.0",
"image-size": "^1.1.1",
"loglevel": "^1.9.1",
"neat-csv": "^7.0.0",
"p-event": "^6.0.0",
"playwright": "^1.41.2",
"postcss-nested": "^6.0.1",
"prettier-plugin-astro": "^0.13.0",
"sharp": "^0.33.2",
"svelte": "^4.2.11"
},
"dependencies": {
"@astrojs/rss": "^4.0.5",
"@floating-ui/dom": "^1.6.3",
"@fontsource/jost": "^5.0.16",
"charts.css": "^1.1.0",
"jsdom": "^24.0.0"
},
"pnpm": {
"overrides": {
"sharp": "^0.33.2"
}
}
}