Skip to content

Instantly share code, notes, and snippets.

@weslleyaraujo
Forked from rafaelrinaldi/package.json
Created November 3, 2015 17:15
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 weslleyaraujo/15beeb8c5f25e48572f7 to your computer and use it in GitHub Desktop.
Save weslleyaraujo/15beeb8c5f25e48572f7 to your computer and use it in GitHub Desktop.
{
"private": true,
"scripts": {
"build:js": "browserify -e source/scripts/index.js -t [ babelify --optional es7 ] -o public/bundle.js",
"build:css": "cssnext source/styles/index.css public/bundle.css",
"build": "npm run js && npm run css",
"watch:js": "watchy -w source/scripts -- npm run build:js",
"watch:css": "watchy -w source/styles -- npm run build:css"
},
"dependencies": {},
"devDependencies": {
"babelify": "^6.4.0",
"browserify": "^12.0.0",
"cssnext": "^1.8.4",
"domready": "^1.0.8",
"history": "^1.12.6",
"minigrid": "^2.2.0",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"react-router": "^1.0.0-rc3",
"watchy": "^0.6.5"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment