forked from ciallo-bill/blog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 976 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 976 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
28
29
{
"name": "biau-playlab-site",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"clean:dist": "node tools/clean_dist.mjs",
"prebuild": "npm run clean:dist",
"build": "astro build",
"preview": "astro preview",
"content:audit": "node tools/audit_site_content.mjs",
"dist:audit": "node tools/audit_dist_links.mjs",
"verify": "npm run content:audit && npm run build && npm run dist:audit",
"play:export": "tools\\export_r2_play_manual.cmd",
"play:check": "node tools/check_r2_play_exports.mjs",
"deploy:pages": "npm run verify && node tools/deploy_pages.mjs",
"deploy:play": "npm run play:export && npm run play:check && node tools/upload_r2_play.mjs",
"deploy:check": "node tools/check_public_endpoints.mjs"
},
"dependencies": {
"astro": "^5.6.1"
},
"devDependencies": {
"@playwright/test": "^1.61.1",
"playwright": "^1.61.1"
}
}