-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 2.62 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 2.62 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
{
"name": "gecode-github-io",
"private": true,
"type": "module",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"prepare:static": "node ./scripts/prepare-static.mjs",
"build": "npm run prepare:static && astro build && node ./scripts/create-sitemap-alias.mjs && node ./scripts/create-classic-redirects.mjs",
"build:pages": "npm run build && node ./scripts/copy-users-archive.mjs",
"build:deploy": "npm run build && node ./scripts/copy-archives.mjs",
"check:html": "./scripts/check-html.sh",
"check:canonical-urls": "node ./scripts/check-canonical-urls.mjs",
"check:site-semantics": "node ./scripts/check-site-semantics.mjs",
"check:docs-hosting": "npm run test:docs-tools && npm run test:docs-worker && npm run check:docs-worker",
"check:docs-worker": "wrangler deploy --dry-run --env canary --config workers/docs/wrangler.jsonc --outdir .wrangler/docs-canary-dry-run && wrangler deploy --dry-run --env production --config workers/docs/wrangler.jsonc --outdir .wrangler/docs-dry-run",
"check:email-worker": "wrangler deploy --dry-run --config workers/email/wrangler.jsonc --outdir .wrangler/email-dry-run",
"check:redirect-worker": "wrangler deploy --dry-run --env production --config workers/redirects/wrangler.jsonc --outdir .wrangler/redirects-dry-run",
"check:mode": "./scripts/check-executable-bits.sh",
"check:quality": "npm run build && npm run check:mode && npm run check:html && npm run check:canonical-urls && npm run check:site-semantics && npm run test:content && npm run check:docs-hosting && npm run test:redirect-worker && npm run check:redirect-worker && npm run test:email-worker && npm run check:email-worker",
"dev": "node ./scripts/dev.mjs",
"preview": "astro preview",
"test:docs-tools": "node --test scripts/docs/*.test.mjs",
"test:content": "node --test src/lib/*.test.mjs",
"test:docs-worker": "vitest run --config workers/docs/vitest.config.mts",
"test:email-worker": "vitest run --config workers/email/vitest.config.mts",
"test:redirect-worker": "vitest run --config workers/redirects/vitest.config.mts"
},
"devDependencies": {
"@astrojs/react": "^6.0.2",
"@astrojs/sitemap": "^3.7.3",
"@cloudflare/vitest-pool-workers": "^0.20.3",
"@cloudflare/workers-types": "^5.20260809.1",
"@tailwindcss/vite": "^4.3.3",
"astro": "^7.2.0",
"html-validate": "^10.17.0",
"pagefind": "^1.5.2",
"tailwindcss": "^4.3.3",
"vitest": "^4.1.10",
"wrangler": "^4.120.0"
},
"dependencies": {
"gray-matter": "^4.0.3",
"react": "^19.2.8",
"react-dom": "^19.2.8"
},
"overrides": {
"minimatch": "^10.2.4"
}
}