-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 979 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 979 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "browsersync-sass-starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"sass": "node-sass --watch ./styles/scss -o ./styles/css",
"start": "run-script-os",
"start:win32": "browser-sync start --server --files '**/*.css, **/*.html, **/*.js, !node_modules/**/*' --directory --port 7777 --browser \"C:\\Program Files\\Firefox Developer Edition\\firefox.exe\"",
"//": "Hello! If you are having trouble running this command. Try changing Firefox Developer Edition to FirefoxDeveloperEdition",
"start:darwin:linux": "browser-sync start --server --files '**/*.css, **/*.html, **/*.js, !node_modules/**/*' --directory --port 7777 --browser 'Firefox Developer Edition'",
"dev": "concurrently \"npm run sass\" \"npm run start\""
},
"author": "",
"license": "ISC",
"devDependencies": {
"browser-sync": "^2.24.5",
"concurrently": "^3.6.0",
"node-sass": "^4.9.0",
"run-script-os": "^1.0.3"
}
}