-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.27 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
{
"name": "stritter.audio",
"version": "0.0.0",
"description": "https://stritter.audio",
"private": true,
"scripts": {
"clean": "rm -rf public && rm -f static/style.css*",
"test:html": "for k in $(find public -type f -iname '*.html'); do html-validate --config=./.html_validate.json $k; done",
"test": "npm run test:html",
"build:hugo": "hugo --baseURL \"$STRITTER_BASE_URL\" --environment production --buildFuture --verbose",
"build:style": "sass style/main.scss static/style.css --style compressed",
"build": "npm run clean && npm run build:style && npm run build:hugo",
"dev:style": "sass style/main.scss static/style.css --watch",
"dev:hugo": "hugo server -D --buildFuture",
"start": "npm run dev:hugo"
},
"repository": {
"type": "git",
"url": "https://github.com/disktree/stritter.audio.git"
},
"author": "[email protected]",
"license": "ISC",
"homepage": "https://github.com/disktree/stritter.audio/blob/master/README.md",
"devDependencies": {
"hugo-bin": "^0.97.0",
"sass": "^1.57.1",
"html-validate": "^7.11.1"
},
"dependencies": {
"dotenv": "^16.0.3"
},
"hugo-bin": {
"buildTags": "extended"
}
}