| { |
| "scripts": { |
| "build": "npm-run-all build:sass build:eleventy", |
| "build:eleventy": "eleventy --passthroughall", |
| "build:sass": "sass site/_stylesheets:build/_stylesheets", |
| "deploy": "npm-run-all deploy:login deploy:hosting", |
| "deploy:login": "firebase-tools login", |
| "deploy:hosting": "firebase-tools deploy --only hosting", |
| "start": "npm-run-all build:sass --parallel watch:*", |
| "watch:eleventy": "eleventy --passthroughall --serve --port=8080", |
| "watch:sass": "sass --watch site/_stylesheets:build/_stylesheets" |
| }, |
| "dependencies": { |
| "@11ty/eleventy": "^0.12.1", |
| "firebase-tools": "^9.18.0", |
| "npm-run-all": "^4.1.5", |
| "sass": "^1.35.1" |
| } |
| } |