add bootstrap

This commit is contained in:
2023-02-22 19:56:03 +10:30
parent 917dde42f2
commit ba347dc9fd
7 changed files with 1655 additions and 6 deletions

View File

@ -4,13 +4,20 @@
"description": "",
"main": "index.js",
"scripts": {
"start": "npx @11ty/eleventy --serve",
"build": "npx @11ty/eleventy"
"watch:eleventy": "eleventy --serve",
"build:eleventy": "eleventy",
"watch:sass": "sass --watch src/_assets/sass:public/css --style compressed",
"build:sass": "sass src/_assets/sass:public/css --style compressed",
"start": "npm-run-all build:sass --parallel watch:*",
"build": "npm-run-all build:*"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@11ty/eleventy": "^2.0.0"
"@11ty/eleventy": "^2.0.0",
"bootstrap": "^5.2.3",
"npm-run-all": "^4.1.5",
"sass": "^1.58.3"
}
}