-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 1.07 KB
/
package.json
File metadata and controls
24 lines (24 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "rogertm.github.io",
"private": true,
"version": "1.0.0",
"description": "Repositorio para el sitio web personal de RogerTM alojado en GitHub Pages.",
"homepage": "https://rogertm.github.io",
"scripts": {
"jekyll:build": "bundle exec jekyll build",
"sass:build": "sass assets/src/scss/style.scss assets/dist/css/style.css --style=compressed --no-source-map",
"sass:watch": "sass assets/src/scss/style.scss assets/dist/css/style.css --watch --style=compressed --no-source-map",
"js:build": "esbuild assets/src/js/bootstrap.js --bundle --minify --outfile=assets/dist/js/bootstrap.js",
"js:watch": "esbuild assets/src/js/bootstrap.js --bundle --minify --outfile=assets/dist/js/bootstrap.js --watch",
"serve": "bundle exec jekyll serve --livereload",
"watch": "npm-run-all --parallel serve sass:watch js:watch",
"build": "npm-run-all sass:build js:build jekyll:build",
"clean": "bundle exec jekyll clean"
},
"devDependencies": {
"bootstrap": "^5.3.8",
"esbuild": "^0.25.0",
"npm-run-all": "^4.1.5",
"sass": "^1.100.0"
}
}