Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
66 lines (66 sloc)
2.23 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "javascript-development-environment", | |
"version": "1.0.0", | |
"description": "JavaScript development environment Pluralsight course by Cory House", | |
"scripts": { | |
"prestart": "babel-node buildScripts/startMessage.js", | |
"start": "npm-run-all --parallel security-check open:src lint:watch test:watch start-mockapi", | |
"open:src": "babel-node buildScripts/srcServer.js", | |
"lint": "esw webpack.config.* src buildScripts --color", | |
"lint:watch": "npm run lint -- --watch", | |
"security-check": "nsp check", | |
"localtunnel": "lt --port 3000", | |
"share": "npm-run-all --parallel open:src localtunnel", | |
"test": "mocha --reporter progress buildScripts/testSetup.js \"src/**/*.test.js\"", | |
"test:watch": "npm run test -- --watch", | |
"generate-mock-data": "babel-node buildScripts/generateMockData", | |
"prestart-mockapi": "npm run generate-mock-data", | |
"start-mockapi": "json-server --watch src/api/db.json --port 3001", | |
"clean-dist": "rimraf ./dist && mkdir dist", | |
"prebuild": "npm-run-all clean-dist test lint", | |
"build": "babel-node buildScripts/build.js", | |
"postbuild": "babel-node buildScripts/distServer.js", | |
"deploy": "surge ./dist" | |
}, | |
"author": "Cory House", | |
"license": "MIT", | |
"dependencies": { | |
"whatwg-fetch": "1.0.0" | |
}, | |
"devDependencies": { | |
"babel-cli": "6.16.0", | |
"babel-core": "6.17.0", | |
"babel-loader": "6.2.5", | |
"babel-preset-latest": "6.16.0", | |
"babel-register": "6.16.3", | |
"chai": "3.5.0", | |
"chalk": "1.1.3", | |
"cheerio": "0.22.0", | |
"compression": "1.6.2", | |
"cross-env": "3.1.3", | |
"css-loader": "0.25.0", | |
"eslint": "3.8.1", | |
"eslint-plugin-import": "2.0.1", | |
"eslint-watch": "2.1.14", | |
"express": "4.14.0", | |
"extract-text-webpack-plugin": "1.0.1", | |
"html-webpack-plugin": "2.22.0", | |
"jsdom": "9.8.0", | |
"json-schema-faker": "0.3.6", | |
"json-server": "0.8.22", | |
"localtunnel": "1.8.1", | |
"mocha": "3.1.2", | |
"nock": "8.1.0", | |
"npm-run-all": "3.1.1", | |
"nsp": "2.6.2", | |
"numeral": "1.5.3", | |
"open": "0.0.5", | |
"rimraf": "2.5.4", | |
"style-loader": "0.13.1", | |
"surge": "0.18.0", | |
"webpack": "1.13.2", | |
"webpack-dev-middleware": "1.8.4", | |
"webpack-hot-middleware": "2.13.0", | |
"webpack-md5-hash": "0.0.5" | |
} | |
} |