-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.73 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 2.73 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
{
"name": "virtualddd-com",
"type": "module",
"version": "0.0.1",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "astro dev",
"build": "astro build && node scripts/prune-dist.mjs && pagefind --site dist",
"preview": "astro preview",
"astro": "astro",
"test": "npm run test:unit && npx astro check && npm run build && node --import tsx --test \"tests/*.test.mjs\"",
"test:unit": "node --import tsx --test \"tests/unit/*.test.mjs\"",
"test:content": "node --test \"tests/content/*.test.mjs\"",
"test:quick": "npm run test:unit && node --import tsx --test \"tests/{build,urls}.test.mjs\"",
"test:all": "npm test && npm run test:content",
"test:full": "npm run test:unit && npm run build && TEST_FULL=1 node --import tsx --test \"tests/*.test.mjs\"",
"redirects": "node scripts/build-redirects.mjs",
"check:urls": "node scripts/check-redirects.mjs",
"verify:live": "node scripts/verify-live.mjs",
"sync": "npm run sync:notion && npm run sync:ddd-crew && npm run sync:podcasts",
"sync:notion": "npm run sync:guests && npm run sync:sessions && npm run sync:open-spaces && npm run sync:stories && npm run sync:heuristics && npm run sync:organisers && npm run sync:conferences && npm run sync:reading-list && npm run sync:ddd-crew-config",
"sync:sessions": "tsx scripts/sync-notion.ts content --collection=sessions --write",
"sync:open-spaces": "tsx scripts/sync-notion.ts content --collection=open-spaces --write",
"sync:stories": "tsx scripts/sync-notion.ts content --collection=stories --write",
"sync:heuristics": "tsx scripts/sync-notion.ts content --collection=heuristics --write",
"sync:organisers": "tsx scripts/sync-notion.ts organisers --write",
"sync:guests": "tsx scripts/sync-notion.ts guests --write",
"sync:ddd-crew-config": "tsx scripts/sync-notion.ts ddd-crew --write",
"sync:ddd-crew": "tsx scripts/sync-ddd-crew.ts --write",
"sync:podcasts": "tsx scripts/sync-podcast-episodes.ts --write",
"sync:conferences": "tsx scripts/sync-notion.ts conferences --write",
"sync:reading-list": "tsx scripts/sync-notion.ts content --collection=reading-list --write",
"sync:learning-journey": "tsx scripts/sync-notion.ts content --collection=learning-journey --write"
},
"dependencies": {
"@astrojs/rss": "^4.0.19",
"@astrojs/sitemap": "^3.7.3",
"@fontsource/poppins": "^5.3.0",
"@fontsource/rajdhani": "^5.3.0",
"@notionhq/client": "^5.23.3",
"astro": "^7.1.6",
"dotenv": "^17.4.2"
},
"devDependencies": {
"@astrojs/check": "^0.9.10",
"@types/node": "^26.1.2",
"axe-core": "^4.12.1",
"pagefind": "^1.5.2",
"playwright": "^1.62.1",
"sharp": "^0.35.3",
"tsx": "^4.23.1",
"typescript": "^6.0.3"
}
}