forked from victoriadrake/hugo-theme-sam
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 923 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 923 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
{
"homepage": "https://github.com/vickylai/hugo-theme-sam",
"bugs": "https://github.com/vickylai/hugo-theme-sam/issues",
"scripts": {
"build:pug": "pug pug/ -o layouts/",
"build:sass": "node-sass --output-style compressed -o static/css sass/",
"autoprefixer": "postcss static/css/*.css --use autoprefixer -d static/css",
"build": "npm run build:pug && npm run build:sass && npm run autoprefixer",
"watch": "chokidar 'sass/*.sass' -c 'npm run build:sass && npm run autoprefixer'"
},
"author": {
"name": "Vicky Lai",
"url": "https://vickylai.com"
},
"repository": "github:vickylai/hugo-theme-sam",
"license": "AGPL-3.0-or-later",
"devDependencies": {
"autoprefixer": "^9.1.2",
"chokidar-cli": "^1.2.0",
"node-sass": "^4.9.3",
"postcss": "^7.0.2",
"postcss-cli": "^6.0.0",
"pug-cli": "^1.0.0-alpha6"
},
"dependencies": {
"lodash": "^4.17.10"
}
}