-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1.02 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
{
"name": "SiteName",
"version": "0.0.1",
"description": "Description",
"main": "index.js",
"scripts": {
"watch:sass": "node-sass sass/main.scss static/css/style.css -w",
"devserver": "hugo server",
"start": "npm-run-all --parallel devserver watch:sass",
"compile:sass": "node-sass sass/main.scss .tmp/css/style.comp.css",
"concat:css": "concat -o .tmp/css/style.concat.css .tmp/css/style.comp.css",
"prefix:css": "postcss --use autoprefixer -b 'last 10 versions' .tmp/css/style.concat.css -o .tmp/css/style.prefix.css",
"compress:css": "node-sass .tmp/css/style.prefix.css static/css/style.css --output-style compressed",
"build": "npm-run-all compile:sass concat:css prefix:css compress:css"
},
"dependencies": {
"hugo-extended": "^0.101.0",
"live-server": "^1.1.0",
"node-sass": "^9.0.0"
},
"devDependencies": {
"autoprefixer": "^10.2.5",
"concat": "^1.0.3",
"lazysizes": "^5.2.2",
"npm-run-all": "^4.1.5",
"postcss-cli": "^8.3.1",
"webpack": "^5.37.0"
}
}