-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.7 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
{
"name": "libredb-website",
"version": "1.2.0",
"private": true,
"type": "module",
"description": "libredb.org — marketing website for LibreDB Studio (Astro static + Outstatic CMS)",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"typecheck": "astro check",
"build": "astro build",
"build:clean": "astro build --force",
"preview": "astro preview",
"serve": "sirv dist --port 4321 --single false --quiet",
"test": "bun test",
"test:watch": "bun test --watch",
"lint": "oxlint",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"knip": "knip",
"secrets": "secretlint '**/*'",
"audit": "bun audit",
"a11y": "bun run scripts/lighthouse-gate.mjs",
"gate": "bun run typecheck && bun run format && bun run lint && bun run knip && bun run build && bun test",
"verify": "bun run gate && bun run secrets && bun run a11y",
"cms": "bun --cwd=cms run dev",
"prepare": "git config core.hooksPath .githooks"
},
"dependencies": {
"@astrojs/rss": "4.0.19",
"@astrojs/sitemap": "3.7.3",
"@fontsource-variable/jetbrains-mono": "5.3.0",
"@fontsource-variable/plus-jakarta-sans": "5.3.0",
"@libredb/libredb": "0.2.2",
"astro": "7.2.9"
},
"devDependencies": {
"@astrojs/check": "0.9.10",
"@secretlint/secretlint-rule-preset-recommend": "13.0.5",
"@types/bun": "1.4.0",
"chrome-launcher": "1.2.1",
"knip": "6.33.0",
"lighthouse": "13.4.1",
"linkedom": "0.18.13",
"oxlint": "1.80.0",
"prettier": "3.9.6",
"prettier-plugin-astro": "0.14.1",
"secretlint": "13.0.5",
"sirv-cli": "3.0.1",
"typescript": "6.0.3"
}
}