Add package.json for Netlify

This commit is contained in:
Victoria Drake 2021-12-19 08:59:36 -06:00
parent 84e3340ca0
commit 2dd728c9fd
8 changed files with 1536 additions and 12534 deletions

1
.gitignore vendored
View file

@ -1 +1,2 @@
exampleSite/public
node_modules

View file

@ -1 +0,0 @@
{"Target":"css/main.css","MediaType":"text/css","Data":{}}

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1 @@
{"Target":"css/main.min.98adf0836c888f19dd74251f73e47777cc164d8ad2e574f3cf3ed083d4395e91.css","MediaType":"text/css","Data":{"Integrity":"sha256-mK3wg2yIjxnddCUfc+R3d8wWTYrS5XTzzz7Qg9Q5XpE="}}

View file

@ -13,7 +13,9 @@
publish = "exampleSite/docs/"
# Default build command.
command = "hugo --gc --minify -t ../.. -d ../docs -v -b https://hugo-introduction.netlify.app/"
command = "npm run build"
[build.environment]
HUGO_VERSION = "0.86.0"
NODE_VERSION = "16.9.1"
NPM_VERSION = "8.3.0"

1519
package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

8
package.json Normal file
View file

@ -0,0 +1,8 @@
{
"scripts": {
"build": "npm install -g postcss postcss-cli autoprefixer && cd exampleSite && hugo --gc --minify -t ../.. -d ../docs -v -b https://hugo-introduction.netlify.app/"
},
"dependencies": {
"postcss-cli": "^9.1.0"
}
}