-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.23 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
{
"name": "jonthenerd.github.io",
"version": "1.0.0",
"description": "",
"main": "",
"scripts": {
"build:site": "hugo",
"build:styles": "sass scss/dark.scss:static/assets/dark.css scss/light.scss:static/assets/light.css scss/style.scss:static/assets/style.css --style compressed",
"build": "npm run build:styles && npm run build:site",
"dev:site": "hugo server",
"dev:styles": "sass scss/dark.scss:static/assets/dark.css scss/light.scss:static/assets/light.css scss/style.scss:static/assets/style.css --watch",
"dev": "concurrently \"npm run dev:site\" \"npm run dev:styles\"",
"format": "prettier **/* --write --ignore-unknown"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonthenerd/jonthenerd.github.io.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jonthenerd/jonthenerd.github.io/issues"
},
"homepage": "https://github.com/jonthenerd/jonthenerd.github.io#readme",
"devDependencies": {
"concurrently": "^7.6.0",
"gray-matter": "^4.0.3",
"prettier": "^2.8.1",
"prettier-plugin-go-template": "^0.0.13",
"sass": "^1.57.1"
}
}