Add empty package.json and add start script
This commit is contained in:
parent
13d0faf629
commit
ceb368418f
4 changed files with 5132 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1 +1,2 @@
|
||||||
|
node_modules
|
||||||
public
|
public
|
||||||
|
|
|
@ -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 '.'
|
hugo server -s exampleSite -d ../public --themesDir '../' --theme '.'
|
||||||
```
|
```
|
||||||
|
|
||||||
|
or simply...
|
||||||
|
|
||||||
|
```shell
|
||||||
|
npm start
|
||||||
|
```
|
||||||
|
|
||||||
|
|
5117
package-lock.json
generated
Normal file
5117
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
8
package.json
Normal file
8
package.json
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
{
|
||||||
|
"scripts": {
|
||||||
|
"start": "hugo server -s exampleSite -d ../public --themesDir '../' --theme '.'"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"npm": "^6.0.0"
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue