-
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.35 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.35 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
{
"name": "starpod",
"type": "module",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "git+https://github.com/shipshapecode/starpod.git"
},
"license": "MIT",
"scripts": {
"astro": "astro",
"build": "astro check && astro build --remote",
"check:no-db": "astro check --config astro.config.no-db.mjs --tsconfig tsconfig.no-db.json",
"db:seed": "pnpm astro db execute db/seed.ts --remote",
"dev": "astro dev",
"lint": "eslint . --cache",
"lint:fix": "eslint . --fix",
"preview": "astro preview",
"start": "astro dev",
"test": "concurrently \"pnpm:test:*(!fix)\" --names \"test:\"",
"test:e2e": "pnpm exec playwright test",
"test:e2e:with-db": "pnpm exec playwright test --project=chromium-with-db",
"test:e2e:no-db": "pnpm exec playwright test --project=chromium-no-db",
"test:unit": "vitest"
},
"dependencies": {
"@astrojs/preact": "^4.1.1",
"@astrojs/vercel": "^8.2.11",
"@preact/signals": "^2.3.2",
"@vercel/analytics": "^1.5.0",
"@vercel/speed-insights": "^1.2.0",
"astro": "^5.15.0",
"astro-seo-schema": "^5.1.0",
"atropos": "^2.0.2",
"preact": "^10.27.2",
"rss-to-json": "^2.1.1",
"schema-dts": "^1.1.5",
"valibot": "^1.1.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.5",
"@astrojs/db": "^0.18.1",
"@astrojs/sitemap": "^3.6.0",
"@eslint/js": "^9.38.0",
"@playwright/test": "^1.56.1",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.16",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/preact": "^3.2.4",
"@types/html-to-text": "^9.0.4",
"@types/node": "^24.9.1",
"@typescript-eslint/parser": "^8.46.2",
"concurrently": "^9.2.1",
"eslint": "^9.38.0",
"eslint-plugin-astro": "^1.3.1",
"globals": "^16.4.0",
"html-to-text": "^9.0.5",
"jsdom": "^27.0.1",
"prettier": "^3.6.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.7.1",
"sharp": "^0.34.4",
"tailwindcss": "^4.1.16",
"typescript": "^5.9.3",
"vite": "^7.1.12",
"vitest": "^4.0.1"
},
"engines": {
"node": "^22.0.0"
},
"packageManager": "pnpm@10.19.0",
"pnpm": {
"onlyBuiltDependencies": [
"@tailwindcss/oxide",
"@vercel/speed-insights",
"esbuild",
"sharp"
]
}
}