-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 1014 Bytes
/
Copy pathpackage.json
File metadata and controls
20 lines (20 loc) · 1014 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "orioles-magic",
"version": "1.0.0",
"description": "Baltimore Orioles and MLB news site",
"type": "module",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"smoke:verify": "sh -lc 'test -f dist/index.html && test -f dist/style.css && test -f dist/rss-proxy.php && grep -q \"id=\\\"scoresTrack\\\"\" dist/index.html && grep -q \"id=\\\"articleList\\\"\" dist/index.html && grep -q \"id=\\\"onDeckWrap\\\"\" dist/index.html && grep -q \"id=\\\"mediaWrap\\\"\" dist/index.html && grep -q \"id=\\\"standingsWrap\\\"\" dist/index.html && grep -q \"id=\\\"leadersWrap\\\"\" dist/index.html && grep -q \"id=\\\"readerOverlay\\\"\" dist/index.html && grep -q \"id=\\\"settingsOverlay\\\"\" dist/index.html'",
"smoke": "npm run build && npm run smoke:verify",
"generate:trade-summaries": "node scripts/generate-trade-summaries.mjs"
},
"dependencies": {
"astro": "^6.1.5"
},
"devDependencies": {
"playwright": "^1.61.1"
}
}