add npm run webpack command
Showing
{ | { | ||
"private": true, | "private": true, | ||
"scripts": { | "scripts": { | ||
"dev-server": "node_modules/.bin/webpack-dev-server --config config/webpack.config.js", | "dev-server": "webpack-dev-server --config config/webpack.config.js", | ||
"eslint": "eslint --max-warnings 0 --ext .js,.js.es6 .", | "eslint": "eslint --max-warnings 0 --ext .js,.js.es6 .", | ||
"eslint-fix": "npm run eslint -- --fix", | "eslint-fix": "npm run eslint -- --fix", | ||
"eslint-report": "npm run eslint -- --format html --output-file ./eslint-report.html", | "eslint-report": "npm run eslint -- --format html --output-file ./eslint-report.html", | ||
"karma": "karma start config/karma.config.js --single-run", | "karma": "karma start config/karma.config.js --single-run", | ||
"karma-start": "karma start config/karma.config.js" | "karma-start": "karma start config/karma.config.js", | ||
"webpack": "webpack --config config/webpack.config.js", | |||
"webpack-prod": "NODE_ENV=production npm run webpack" | |||
}, | }, | ||
"dependencies": { | "dependencies": { | ||
"babel": "^5.8.38", | "babel": "^5.8.38", | ||
... | ... |
Please register or sign in to comment