From 06c2d7f77ab9165ee30e8432b2885b968491e3b3 Mon Sep 17 00:00:00 2001 From: Pete Cook Date: Tue, 1 Mar 2016 19:59:10 +0000 Subject: [PATCH] Reorder npm scripts --- package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index ae2f5e1..48e9a96 100644 --- a/package.json +++ b/package.json @@ -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": {