Skip to content
This repository has been archived by the owner on Nov 10, 2020. It is now read-only.

Commit

Permalink
chore(scripts): sort scripts alphabetically
Browse files Browse the repository at this point in the history
  • Loading branch information
Sven Lechner committed Apr 17, 2018
1 parent 541c89b commit b834036
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,24 @@
"main": "./build/app/app.js",
"description": "An open source cross platform desktop application for devRant",
"scripts": {
"analyze": "npm run profile && webpack-bundle-analyzer stats.json build/app",
"build": "cross-env NODE_ENV=production webpack --mode production --color --config ./webpack/prod.config.js",
"clean": "rimraf build/app",
"lint": "eslint --ext .jsx,.js app/src/js",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"build": "cross-env NODE_ENV=production webpack --mode production --color --config ./webpack/prod.config.js",
"pack": "electron-builder --dir",
"dev": "cross-env NODE_ENV=development concurrently -k \"npm run server\" \"npm run start\" ",
"dist": "electron-builder",
"lint-fix": "eslint --ext .jsx,.js app/src/js --fix",
"publish": "electron-builder --draft",
"lint": "eslint --ext .jsx,.js app/src/js",
"lint!": "eslint --ext .jsx,.js app/src/js --fix",
"pack": "electron-builder --dir",
"postinstall": "electron-builder install-app-deps",
"dev": "cross-env NODE_ENV=development concurrently -k \"npm run server\" \"npm run start\" ",
"precommit": "lint-staged",
"profile": "webpack --config webpack/prod.config.js --profile --json > stats.json",
"publish": "electron-builder --draft",
"server": "webpack-dev-server --mode development --color --config webpack/dev.config.js",
"start": "cross-env NODE_ENV=development electron app/src/app.js",
"start-build": "electron build/app/app.js",
"test": "jest --coverage",
"precommit": "lint-staged",
"analyze": "npm run profile && webpack-bundle-analyzer stats.json build/app",
"profile": "webpack --config webpack/prod.config.js --profile --json > stats.json"
"start:build": "electron build/app/app.js",
"test": "jest --coverage"
},
"license": "Apache-2.0",
"build": {
Expand Down

0 comments on commit b834036

Please sign in to comment.