mirror of
https://github.com/bckelley/Sass-Workflow.git
synced 2026-08-24 03:24:12 -05:00
* added proxy-middleware * added express server had to add the express server to see the files in my directory and proxy-middleware to get gulp and browser-sync to work
28 lines
599 B
JSON
28 lines
599 B
JSON
{
|
|
"name": "sass_workflow",
|
|
"version": "1.0.0",
|
|
"description": "Sass Workflow using gulp",
|
|
"type": "commonjs",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "concurrently \"gulp\" \"node server.js\""
|
|
},
|
|
"author": "bckelley",
|
|
"license": "CC BY-NC-SA 4.0",
|
|
"engines": {
|
|
"node": ">=18.8.0"
|
|
},
|
|
"devDependencies": {
|
|
"browser-sync": "^3.0.2",
|
|
"concurrently": "^9.0.0",
|
|
"gulp": "^5.0.0",
|
|
"gulp-autoprefixer": "^9.0.0",
|
|
"gulp-sass": "^5.1.0",
|
|
"sass": "^1.56.0"
|
|
},
|
|
"dependencies": {
|
|
"express": "^4.19.2",
|
|
"http-proxy-middleware": "^3.0.2"
|
|
}
|
|
}
|