-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 814 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 814 Bytes
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
{
"name": "ii",
"version": "2.0.0",
"description": "Serious Fucking Index",
"author": "tong@disktree.net",
"license": "ISC",
"private": true,
"homepage": "https://ii.disktre.net",
"repository": {
"type": "git",
"url": "https://github.com/disktree/ii.git"
},
"devDependencies": {
"dotenv": "^16.3.1",
"hugo-bin": "^0.141.2",
"sass": "^1.85.0"
},
"hugo-bin": {
"buildTags": "extended"
},
"scripts": {
"start": "hugo server",
"clean": "rm -rf public && rm -f static/style.css*",
"dev:style": "sass style/main.scss static/style.css -w",
"build:style": "sass style/main.scss static/style.css --style compressed",
"build:hugo": "hugo -e production",
"build": "npm run build:style && npm run build:hugo",
"deploy": "scripts/deploy.sh"
}
}