-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
16 lines (16 loc) · 917 Bytes
/
package.json
File metadata and controls
16 lines (16 loc) · 917 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"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 && rg -q \"id=\\\"scoresTrack\\\"\" dist/index.html && rg -q \"id=\\\"articleList\\\"\" dist/index.html && rg -q \"id=\\\"onDeckWrap\\\"\" dist/index.html && rg -q \"id=\\\"podcastWrap\\\"\" dist/index.html && rg -q \"id=\\\"videoWrap\\\"\" dist/index.html && rg -q \"id=\\\"standingsWrap\\\"\" dist/index.html && rg -q \"id=\\\"leadersWrap\\\"\" dist/index.html && rg -q \"id=\\\"readerOverlay\\\"\" dist/index.html && rg -q \"id=\\\"settingsOverlay\\\"\" dist/index.html'",
"smoke": "npm run build && npm run smoke:verify"
},
"dependencies": {
"astro": "^6.1.5"
}
}