-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1019 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 1019 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
27
{
"private": true,
"workspaces": [
"tools/album-creator"
],
"dependencies": {
"@atproto/api": "^0.14.12",
"gray-matter": "^4.0.3",
"hugo-extended": "^0.135.0"
},
"devDependencies": {
"@playwright/test": "^1.44.1",
"@types/node": "^20.12.12"
},
"scripts": {
"build": "hugo && node scripts/sync-standard-publication-well-known.js",
"standard:publication": "node scripts/standard-site/cli.js publication",
"standard:document": "node scripts/standard-site/cli.js document",
"build:preview": "hugo --baseURL \"${DEPLOY_PRIME_URL:-/}\" --buildDrafts --buildFuture",
"start": "hugo server --baseURL \"http://localhost:1313\" --disableFastRender",
"starttest": "hugo server --baseURL \"http://localhost:1313\" -c testcontent --disableFastRender",
"test": "playwright test",
"update": "playwright test --update-snapshots",
"album-creator": "npm exec -w album-creator -- album-creator",
"build:album-creator": "npm run build -w album-creator"
}
}