Skip to content

Commit

Permalink
Reorder npm scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
cookpete committed Mar 2, 2016
1 parent c8f2676 commit 06c2d7f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
"version": "0.0.1",
"description": "A React app to parse and play media from subreddits and comment threads.",
"scripts": {
"build": "NODE_ENV=production webpack --config webpack.config.prod.js",
"clean": "rimraf dist data",
"start": "node server.js",
"fetch-playlists": "babel-node scripts/fetch-playlists.js",
"lint": "npm run lint:js; npm run lint:css",
"lint:css": "scss-lint src",
"lint:js": "standard --verbose | snazzy",
"postbuild": "cp index.html dist",
"prebuild": "npm run clean && npm run fetch-playlists",
"start": "node server.js",
"test": "NODE_ENV=production mocha --require ignore-styles test --compilers js:babel-core/register",
"prebuild": "npm run clean && npm run fetch-playlists",
"build": "NODE_ENV=production webpack --config webpack.config.prod.js",
"postbuild": "cp index.html dist",
"deploy": "lftp -u $FTP_USER,$FTP_PASS $FTP_SITE -e 'mirror -c -R dist ~; exit'"
},
"repository": {
Expand Down

0 comments on commit 06c2d7f

Please sign in to comment.