-
-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.21 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
75
76
77
78
79
80
81
82
{
"name": "starpod-site",
"version": "0.0.1",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/shipshapecode/starpod.git"
},
"license": "MIT",
"type": "module",
"scripts": {
"astro": "astro",
"build": "astro check && astro build",
"db:push": "drizzle-kit push",
"db:seed": "tsx db/seed.ts",
"db:studio": "drizzle-kit studio",
"dev": "astro dev",
"lint": "eslint . --cache",
"lint:fix": "eslint . --fix",
"preview": "astro preview",
"publish:atproto": "tsx scripts/publish-atproto-episodes.ts",
"publish:atproto:backfill": "tsx scripts/publish-atproto-episodes.ts --backfill",
"start": "astro dev",
"test": "concurrently \"pnpm:test:*(!fix)\" --names \"test:\"",
"test:e2e": "pnpm exec playwright test",
"test:unit": "vitest"
},
"dependencies": {
"@astrojs/preact": "^5.1.4",
"@astrojs/vercel": "^10.0.8",
"@bryanguffey/astro-standard-site": "^1.0.3",
"astro": "6.4.2",
"drizzle-orm": "^0.45.2",
"html-to-text": "^9.0.5",
"rss-to-json": "^2.1.1",
"starpod": "workspace:*",
"valibot": "^1.4.1"
},
"devDependencies": {
"@astrojs/check": "^0.9.9",
"@eslint/js": "^9.39.4",
"@playwright/test": "^1.60.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/preact": "^3.2.4",
"@types/html-to-text": "^9.0.4",
"@types/node": "^24.12.4",
"@typescript-eslint/parser": "^8.60.0",
"concurrently": "^9.2.1",
"dotenv": "^17.4.2",
"drizzle-kit": "^0.31.10",
"eslint": "^9.39.4",
"eslint-plugin-astro": "^1.7.0",
"globals": "^16.5.0",
"jsdom": "^27.4.0",
"preact": "^10.29.2",
"prettier": "^3.8.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.7.4",
"release-plan": "^0.18.0",
"sharp": "^0.34.5",
"tailwindcss": "^4.3.0",
"tsx": "^4.22.4",
"typescript": "^5.9.3",
"vite": "^7.3.3",
"vitest": "^4.1.7"
},
"packageManager": "pnpm@10.27.0",
"engines": {
"node": "^22.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"@tailwindcss/oxide",
"@vercel/speed-insights",
"esbuild",
"sharp"
],
"overrides": {
"fast-xml-parser": "4.5.4"
}
}
}