-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 931 Bytes
/
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
{
"name": "hchiam.github.io",
"version": "5.0.0",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"deploy": "astro build && npm run deploy:pre-deploy && npm run deploy:surge && npm run deploy:gh-pages",
"deploy:pre-deploy": "cp {.nojekyll,CNAME,manifest.webmanifest} dist && git add . && git commit -m \"Deploy to gh-pages\" && git push && git status",
"deploy:gh-pages": "git subtree push --prefix=dist origin gh-pages",
"deploy:surge": "surge dist https://hchiam-test.surge.sh",
"reminder": "echo; echo 'Reminder: Do you need to \\033[1;34m[skip ci]\\033[0m?'; echo;"
},
"devDependencies": {
"@astrojs/react": "^0.1.3",
"astro": "^1.0.0-beta.40",
"babel-plugin-styled-components": "1.13.3",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"sass": "^1.52.2"
},
"dependencies": {}
}