Files
bckelleyandbckelley 6d02557f56 rewrite
* 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
2024-09-09 13:08:49 -05:00

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"
}
}