All checks were successful
Deploy / Deploy to Production (push) Successful in 2m1s
29 lines
655 B
JSON
29 lines
655 B
JSON
{
|
|
"name": "kirby-browsersync-demo",
|
|
"version": "1.0.0",
|
|
"description": "My Kirby Browsersync Demo",
|
|
"scripts": {
|
|
"serve": "concurrently \"npm run serve-php\" \"npm run sync\"",
|
|
"serve-php": "php -S localhost:8000 kirby/router.php &> /dev/null",
|
|
"sync": "node browsersync.js"
|
|
},
|
|
"devDependencies": {
|
|
"browser-sync": "^2.26.7",
|
|
"concurrently": "^5.0.0"
|
|
},
|
|
"browserSync": {
|
|
"proxy": "localhost:8000",
|
|
"watch": [
|
|
"assets",
|
|
"content",
|
|
"site/snippets",
|
|
"site/templates",
|
|
"site/blueprints",
|
|
"site/languages"
|
|
],
|
|
"ignore": [
|
|
"**/.lock",
|
|
"**/.DS_Store"
|
|
]
|
|
}
|
|
}
|