Skip to content

Instantly share code, notes, and snippets.

@avicdro
Last active November 14, 2018 16:44
Show Gist options
  • Save avicdro/2a4bb019963a1d8b99d82af14ebc734a to your computer and use it in GitHub Desktop.
Save avicdro/2a4bb019963a1d8b99d82af14ebc734a to your computer and use it in GitHub Desktop.
{
  "name": "prueba1",
  "version": "0.1.0",
  "private": true,
  "dependencies": {
    "node-sass-chokidar": "^1.3.3",
    "npm-run-all": "^4.1.3",
    "react": "^16.5.0",
    "react-dom": "^16.5.0",
    "react-scripts": "1.1.5",
    "styled-components": "^4.1.1"
  },
  "scripts": {
    "build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/",
    "watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive --usePolling --polling-interval 500",
    "start-js": "react-scripts start",
    "build-js": "react-scripts build",
    "start": "npm-run-all -p watch-css start-js",
    "build": "npm-run-all build-css build-js",
    "test": "react-scripts test --env=jsdom",
    "eject": "react-scripts eject"
  }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment