-
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.1 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.1 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
{
"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",
"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:unit": "vitest"
},
"dependencies": {
"@astrojs/preact": "^4.1.3",
"@astrojs/vercel": "^9.0.4",
"@preact/signals": "^2.8.2",
"@vercel/analytics": "^1.6.1",
"@vercel/speed-insights": "^1.3.1",
"astro": "5.17.2",
"astro-seo-schema": "^5.2.0",
"atropos": "^2.0.2",
"preact": "^10.28.4",
"rss-to-json": "^2.1.1",
"schema-dts": "^1.1.5",
"valibot": "^1.2.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.6",
"@astrojs/db": "^0.18.3",
"@astrojs/sitemap": "^3.7.0",
"@eslint/js": "^9.39.4",
"@playwright/test": "^1.58.2",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.2.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/preact": "^3.2.4",
"@types/html-to-text": "^9.0.4",
"@types/node": "^24.12.0",
"@typescript-eslint/parser": "^8.56.1",
"concurrently": "^9.2.1",
"eslint": "^9.39.4",
"eslint-plugin-astro": "^1.6.0",
"globals": "^16.5.0",
"html-to-text": "^9.0.5",
"jsdom": "^27.4.0",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"sharp": "^0.34.5",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"engines": {
"node": "^22.0.0"
},
"packageManager": "pnpm@10.27.0",
"pnpm": {
"onlyBuiltDependencies": [
"@tailwindcss/oxide",
"@vercel/speed-insights",
"esbuild",
"sharp"
]
}
}