This repository has been archived by the owner on Sep 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
43 lines (43 loc) · 1.65 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
34
35
36
37
38
39
40
41
42
43
{
"name": "hugo-smorg",
"version": "0.5.0",
"description": "Hugo Bulma powered theme for a small org / individual",
"main": "index.js",
"scripts": {
"clean": "rm -rf static/css/*.css exampleSite/static/css/*.css exampleSite/public/*",
"scss": "node-sass --include-path node_modules scss/smorg.scss > static/css/smorg.css",
"mw:min": "node-sass --include-path node_modules --output-style compressed scss/mw.scss > static/css/mw.min.css",
"vector:min": "node-sass --include-path node_modules --output-style compressed scss/vector.scss > static/css/vector.min.css",
"scss:min": "node-sass --include-path node_modules --output-style compressed scss/smorg.scss > static/css/smorg.min.css",
"scss:watch": "nodemon -e scss,sass --watch scss -x 'run-s --print-label scss scss:min'",
"hugo": "cd exampleSite && hugo -v",
"serve": "cd exampleSite && hugo serve --forceSyncStatic --ignoreCache --cleanDestinationDir --disableFastRender",
"dev": "run-p --print-label --continue-on-error scss:watch serve",
"build": "run-s --print-label --continue-on-error clean scss scss:min hugo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/solutionroute/hugo-smorg.git"
},
"keywords": [
"hugo",
"theme",
"bulma",
"smorg",
"css",
"sass"
],
"author": "Mike Watkins",
"license": "MIT",
"bugs": {
"url": "https://github.com/solutionroute/hugo-smorg/issues"
},
"homepage": "https://github.com/solutionroute/hugo-smorg#readme",
"dependencies": {},
"devDependencies": {
"bulma": "^0.6.2",
"node-sass": "^4.7.2",
"nodemon": "^1.17.1",
"npm-run-all": "^4.1.2"
}
}