-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
22 lines (22 loc) · 1.22 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
{
"name": "cocotb-web",
"version": "1.0.0",
"description": "cocotb-web",
"license": "CC-BY-4.0",
"main": "index.js",
"scripts": {
"assets:clean": "rm -rf assets/js && rm -rf _sass/bootstrap && rm -rf assets/css/fonts && rm -rf assets/css/bootstrap-icons.css",
"assets:copy:js": "mkdir -p assets/js && cp node_modules/bootstrap/dist/js/bootstrap.bundle.min.* assets/js/",
"assets:copy:scss": "mkdir -p _sass/bootstrap && cp -a node_modules/bootstrap/scss/. _sass/bootstrap/",
"assets:copy:fonts": "npm run assets:copy:fonts-bootstrap",
"assets:copy:fonts-bootstrap": "mkdir -p assets/css/fonts && cp -a node_modules/bootstrap-icons/font/fonts/* assets/css/fonts/",
"assets:copy:css": "mkdir -p assets/css && cp -a node_modules/bootstrap-icons/font/bootstrap-icons.css assets/css/",
"assets:install": "npm run assets:copy:js && npm run assets:copy:scss && npm run assets:copy:fonts && npm run assets:copy:css",
"build": "npm run assets:install && bundler exec jekyll build",
"serve": "npm run assets:install && bundler exec jekyll serve --host 0.0.0.0 --port 4000 --livereload --livereload-port 35729 --incremental"
},
"dependencies": {
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3"
}
}