Add empty package.json and add start script

This commit is contained in:
dzello 2018-04-30 13:34:52 -07:00
parent 13d0faf629
commit ceb368418f
4 changed files with 5132 additions and 0 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
node_modules
public

View File

@ -172,3 +172,9 @@ Contributions are very welcome. To run the example site in this repository local
hugo server -s exampleSite -d ../public --themesDir '../' --theme '.'
```
or simply...
```shell
npm start
```

5117
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": {
"start": "hugo server -s exampleSite -d ../public --themesDir '../' --theme '.'"
},
"dependencies": {
"npm": "^6.0.0"
}
}