Skip to content

Instantly share code, notes, and snippets.

@bobdobbs
Created February 10, 2022 05:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bobdobbs/e6bf46039fa17e5d6e9bda44c2524137 to your computer and use it in GitHub Desktop.
Save bobdobbs/e6bf46039fa17e5d6e9bda44c2524137 to your computer and use it in GitHub Desktop.
{
"name": "react tut",
"version": "0.0.1",
"description": "Steps towards a more sufficient build pipeline",
"main": "index.js",
"watch": {
"sass": {
"patterns": [
"./src/sass"
],
"extensions": "scss"
},
"bundle": {
"patterns": [
"./src/js"
],
"extensions": "js"
}
},
"scripts": {
"dev": "concurrently \"npm run watch\" \"npm run bs\" ",
"bs": "browser-sync start --server dist --files \" ./dist\" ",
"watch": "npm-watch",
"serve": "http-server dist",
"sass": "sass ./src/sass/main.scss dist/css/main.css",
"bundle": "esbuild src/js/index.js --sourcemap --bundle --loader:.js=jsx --outfile=dist/js/bundle.js"
},
"author": "Bob",
"license": "ISC",
"devDependencies": {
"browser-sync": "^2.27.7",
"browsersync": "^0.0.1-security",
"concurrently": "^7.0.0",
"esbuild": "^0.14.11",
"eslint-plugin-react": "^7.28.0",
"html-includes": "^4.4.1",
"html-minifier": "^4.0.0",
"http-server": "^14.1.0",
"indium": "^5.0.0",
"javascript-typescript-langserver": "^2.11.3",
"npm-watch": "^0.11.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"readable-stream": "^3.6.0",
"sass": "^1.48.0",
"stream-combiner2": "^1.1.1",
"swiper": "^7.4.1"
},
"dependencies": {
"bulma": "^0.9.3"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment