-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 2.08 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@btrb/bridgetown-theme-bootstrap-blog",
"description": "A Bridgetown + Bootstrap 5 Blog Theme",
"homepage": "https://github.com/bt-rb/bridgetown-theme-bootstrap-blog#readme",
"version": "0.0.1",
"author": {
"email": "support@andrewm.codes",
"name": "Andrew Mason",
"url": "https://andrewm.codes"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bt-rb/bridgetown-theme-bootstrap-blog.git"
},
"bugs": {
"url": "https://github.com/bt-rb/bridgetown-theme-bootstrap-blog/issues"
},
"keywords": [
"andrewmcodes",
"bootstrap",
"bootstrap5",
"bridgetown",
"template",
"theme"
],
"dependencies": {
"bootstrap": "5.0.0-alpha3",
"clean-css-cli": "^4.2.1",
"cpx": "^1.5.0",
"node-sass": "^4.10.0",
"npm-run-all": "^4.1.5",
"popper.js": "^1.16.1"
},
"devDependencies": {
"browser-sync": "^2.24.7"
},
"scripts": {
"browsersync": "node sync.js",
"build": "npm-run-all --sequential clean copy-* templates css",
"clean": "bin/bridgetown clean",
"copy-js": "cpx \"assets/javascript/**/*.*\" output/_bridgetown/js",
"copy-js-bootstrap": "cpx \"node_modules/bootstrap/dist/js/*\" output/_bridgetown/js/bootstrap/",
"copy-static": "cpx \"assets/static/**/*.*\" output/_bridgetown/static",
"css": "npm-run-all --sequential css-*",
"css-compile": "node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 assets/styles/bootstrap-theme.scss output/_bridgetown/css/bootstrap/bootstrap-theme.css",
"css-minify": "cleancss --level 1 --source-map --source-map-inline-sources --output output/_bridgetown/css/bootstrap/bootstrap-theme.min.css output/_bridgetown/css/bootstrap/bootstrap-theme.css",
"deploy": "npm-run-all --sequential clean build",
"start": "yarn watch",
"templates": "bin/bridgetown build",
"watch": "npm-run-all build --parallel watch-templates watch-css browsersync",
"watch-css": "yarn css-compile --watch",
"watch-templates": "bin/bridgetown serve --port 4001"
},
"private": true,
"license": "MIT"
}