-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.24 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.24 KB
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
{
"name": "podter.me",
"description": "Podter's website",
"license": "MIT",
"author": "Podter",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "astro dev",
"build": "bun typecheck && astro build",
"preview": "wrangler dev",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"typecheck": "astro check",
"db:gen": "drizzle-kit generate",
"db:push": "wrangler d1 migrations apply podter-website --local",
"db:push:prod": "wrangler d1 migrations apply podter-website --remote",
"cf-typegen": "wrangler types"
},
"dependencies": {
"@astrojs/rss": "^4.0.15",
"@fontsource-variable/newsreader": "^5.2.10",
"@oslojs/crypto": "^1.0.1",
"@oslojs/encoding": "^1.1.0",
"@oslojs/jwt": "^0.3.0",
"arctic": "^3.7.0",
"astro": "^5.18.0",
"bits-ui": "^2.16.3",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"drizzle-orm": "^0.45.1",
"geist": "^1.7.0",
"howler": "^2.2.4",
"satori": "0.25.0",
"satori-html": "^0.3.2",
"set-cookie-parser": "^3.0.1",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.6",
"@astrojs/cloudflare": "^12.6.12",
"@astrojs/mdx": "^4.3.13",
"@astrojs/sitemap": "^3.7.0",
"@astrojs/svelte": "^7.2.5",
"@astrojs/tailwind": "^6.0.2",
"@eslint/compat": "^2.0.3",
"@eslint/js": "^10.0.1",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@tailwindcss/typography": "^0.5.19",
"@types/howler": "^2.2.12",
"@types/set-cookie-parser": "^2.4.10",
"@typescript-eslint/parser": "^8.56.1",
"astro-robots-txt": "^1.0.0",
"drizzle-kit": "^0.31.9",
"eslint": "^10.0.3",
"eslint-plugin-astro": "^1.6.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-svelte": "^3.15.0",
"globals": "^17.4.0",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-svelte": "^3.5.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"svelte": "5.53.7",
"tailwindcss": "v3-lts",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"wrangler": "^4.71.0"
},
"packageManager": "bun@1.3.10"
}