Skip to content

Instantly share code, notes, and snippets.

@ethan-deng
Last active November 4, 2015 07:44
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 ethan-deng/20c41f647e5b6ab175ea to your computer and use it in GitHub Desktop.
Save ethan-deng/20c41f647e5b6ab175ea to your computer and use it in GitHub Desktop.

Package.json

{
  "name": "",
  "version": "1.0.0",
  "description": "",
  "repository": "",
  "main": "js/app.js",
  "dependencies": {
    "alt": "^0.17.3",
    "bootstrap": "^3.3.5",
    "crossfilter": "^1.3.12",
    "d3": "^3.5.6",
    "dc": "^2.0.0-beta.18",
    "fixed-data-table": "^0.4.6",
    "immutable": "^3.7.5",
    "intro.js": "^1.1.1",
    "jquery": "^2.1.4",
    "object-assign": "^4.0.1",
    "react": "^0.13.3",
    "spinkit": "^1.2.2"
  },
  "devDependencies": {
    "babelify": "^6.3.0",
    "browserify": "^11.0.1",
    "watchify": "^3.4.0",
    "minifyify": "^7.0.6",
    "node-sass": "^3.3.2",
    "parallelshell": "^2.0.0"
  },
  "scripts": {
    "build-sass": "node-sass --source-map true css/main.scss build/bundle.css",
    "watch-sass": "node-sass --source-map true -w css/main.scss build/bundle.css",
    "build-js": "browserify -d js/app.js > build/bundle.js",
    "watch-js": "watchify --delay 1000 -v -d js/app.js -o build/bundle.js",
    "build": "parallelshell \"npm run build-sass\" \"npm run build-js\"",
    "watch": "parallelshell \"npm run watch-sass\" \"npm run watch-js\""
  },
  "author": "",
  "browserify": {
    "transform": [
      "babelify"
    ]
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment