webpack-dashboard/package.json
Ryan Roemer 32b9543c14 3.3.1
2021-01-29 10:39:43 -08:00

76 lines
2.2 KiB
JSON

{
"name": "webpack-dashboard",
"version": "3.3.1",
"description": "a CLI dashboard for webpack dev server",
"bin": "bin/webpack-dashboard.js",
"main": "index.js",
"engines": {
"node": ">=8.0.0"
},
"types": "index.d.ts",
"scripts": {
"test": "mocha \"test/**/*.spec.js\"",
"test-cov": "nyc mocha \"test/**/*.spec.js\"",
"lint": "eslint .",
"check": "run-s format-check lint test check-ts",
"check-ci": "run-s format-check lint test-cov check-ts",
"check-ts": "tsc index.d.ts --noEmit",
"dev": "cross-env EXAMPLE=duplicates-esm node bin/webpack-dashboard.js -- webpack-cli --config examples/config/webpack.config.js --watch",
"format": "prettier --write \"./{bin,examples,plugin,test,utils}/**/*.js\"",
"format-check": "prettier --list-different \"./{bin,examples,plugin,test,utils}/**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/FormidableLabs/webpack-dashboard.git"
},
"keywords": [
"webpack",
"cli",
"plugin",
"dashboard"
],
"author": "Ken Wheeler",
"license": "MIT",
"bugs": {
"url": "https://github.com/FormidableLabs/webpack-dashboard/issues"
},
"homepage": "https://github.com/FormidableLabs/webpack-dashboard#readme",
"peerDependencies": {
"webpack": "*"
},
"dependencies": {
"chalk": "^4.1.0",
"commander": "^7.0.0",
"cross-spawn": "^7.0.3",
"filesize": "^6.1.0",
"handlebars": "^4.1.2",
"inspectpack": "^4.6.1",
"most": "^1.7.3",
"neo-blessed": "^0.2.0",
"socket.io": "^3.1.0",
"socket.io-client": "^3.1.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"chai": "^4.1.2",
"cross-env": "^7.0.3",
"eslint": "^7.18.0",
"eslint-config-formidable": "^4.0.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-filenames": "^1.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"mocha": "^8.2.1",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"sinon": "^9.2.3",
"sinon-chai": "^3.5.0",
"typescript": "^4.1.3",
"webpack": "^5.16.0",
"webpack-cli": "^4.4.0",
"webpack-stats-plugin": "^1.0.3"
}
}