-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 867 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 867 Bytes
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
{
"name": "cv-11ty",
"private": true,
"type": "module",
"scripts": {
"dev": "eleventy --serve --input=src --output=dist",
"build": "rm -rf dist && eleventy --input=src --output=dist",
"serve": "bunx serve dist",
"validate:content": "bun scripts/validate-content.mjs",
"check:links": "bun scripts/check-links.mjs",
"check:links:external": "bun scripts/check-links-external.mjs",
"check": "bun run validate:content && bun run build && bun run check:links && bun run print:smoke && bun test && (bun run check:links:external || true)",
"print:smoke": "bun scripts/print-smoke.mjs",
"test": "bun test"
},
"dependencies": {
"@11ty/eleventy": "^3.1.5",
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.1",
"markdown-it": "^14.1.1",
"qrcode": "^1.5.4"
},
"devDependencies": {
"playwright": "^1.59.1"
}
}