-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
33 lines (33 loc) · 1.07 KB
/
package.json
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
30
31
32
33
{
"name": "pyohio-static-website",
"description": "PyOhio website",
"version": "2024.0.1",
"private": true,
"author": "PyOhio",
"dependencies": {
"astro-icon": "^1.1.0"
},
"devDependencies": {
"@onwidget/astrowind": "file:./2024",
"prettier": "^2.2.1"
},
"keywords": [],
"license": "MIT",
"scripts": {
"clean": "rm -rf public",
"dev": "cd 2024 && yarn dev",
"blog-dev": "cd blog && yarn dev",
"build": "cd 2024 && yarn install && yarn build && cd ../blog && yarn install && yarn build",
"preview": "cd 2024 && yarn preview",
"blog-preview": "cd blog && yarn preview",
"build-prod": "pwd && yarn clean && yarn build && mkdir -p ./public && cp -r ./archive/20* ./public && cp -r ./2024/dist ./public/2024 && cp -r ./blog/dist ./public/blog && cp -rv ./netlify-static/* ./public/",
"format": "prettier --write \"**/*.{js,jsx,json,md}\""
},
"repository": {
"type": "git",
"url": "https://github.com/pyohio/pyohio-static-website"
},
"bugs": {
"url": "https://github.com/pyohio/pyohio-static-website/issues"
}
}