Created
June 9, 2016 16:41
-
-
Save iampeterbanjo/00f7557b0ff5525ba7de28678ea51f47 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Front-end package.json for | |
// - compiling sass | |
// - hot relaod | |
{ | |
"name": "", | |
"version": "1.0.0", | |
"description": "", | |
"scripts": { | |
"test": "echo \"Error: no test specified\" && exit 1", | |
"start": "./node_modules/.bin/parallelshell 'npm run watch:scss' './node_modules/lite-server/bin/lite-server'", | |
"build:scss": "./node_modules/node-sass/bin/node-sass --include-path scss ./www/assets/styles/main.scss ./www/assets/styles/main.css", | |
"watch:scss": "./node_modules/nodemon/bin/nodemon.js -e scss -x 'npm run build:scss'" | |
}, | |
"repository": { | |
"type": "git", | |
"url": "" | |
}, | |
"keywords": [ | |
"" | |
], | |
"author": "peterbanjo@", | |
"license": "UNLICENSED", | |
"homepage": "", | |
"dependencies": { | |
"lite-server": "^2.2.0", | |
"node-sass": "^3.7.0", | |
"nodemon": "^1.9.2", | |
"parallelshell": "^2.0.0" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment