Skip to content

Instantly share code, notes, and snippets.

@danivijay
Last active December 16, 2017 12:16
Show Gist options
  • Save danivijay/f5392c4e5270b1213d219e451123a94e to your computer and use it in GitHub Desktop.
Save danivijay/f5392c4e5270b1213d219e451123a94e to your computer and use it in GitHub Desktop.
package.json for Building a JS Development Environment, install 'npm-run-all' first.
{
"name": "javascript-development-environment",
"version": "1.0.0",
"description": "JavaScript Development Environment by Dani Vijay",
"scripts": {
"prestart": "node buildScripts/startMessage.js",
"start": "npm-run-all --parallel security-check open:src",
"open:src": "node buildScripts/srcServer.js",
"security-check": "nsp check",
"localtunnel": "lt --port 3000",
"share": "npm-run-all --parallel open:src localtunnel"
},
"author": "Dani Vijay",
"license": "GNU General Public License v3.0",
"dependencies": {
"whatwg-fetch": "2.0.3"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-loader": "7.1.2",
"babel-preset-latest": "6.24.1",
"babel-register": "6.26.0",
"chai": "4.1.2",
"chalk": "2.3.0",
"cheerio": "1.0.0-rc.2",
"compression": "1.7.1",
"cross-env": "5.1.1",
"css-loader": "0.28.7",
"eslint": "4.13.1",
"eslint-plugin-import": "2.8.0",
"eslint-watch": "3.1.3",
"express": "4.16.2",
"extract-text-webpack-plugin": "3.0.2",
"html-webpack-plugin": "2.30.1",
"jsdom": "11.5.1",
"json-schema-faker": "0.4.6",
"json-server": "0.12.1",
"localtunnel": "1.8.3",
"mocha": "4.0.1",
"nock": "9.1.4",
"npm-run-all": "^4.1.2",
"nsp": "3.1.0",
"numeral": "2.0.6",
"open": "0.0.5",
"rimraf": "2.6.2",
"style-loader": "0.19.1",
"webpack": "3.10.0",
"webpack-dev-middleware": "2.0.1",
"webpack-hot-middleware": "2.21.0",
"webpack-md5-hash": "0.0.6"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment