mirror of
https://github.com/FormidableLabs/webpack-dashboard.git
synced 2026-01-18 14:18:05 +00:00
83 lines
2.6 KiB
JSON
83 lines
2.6 KiB
JSON
{
|
|
"name": "webpack-dashboard",
|
|
"version": "3.3.8",
|
|
"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 plugin/index.d.ts examples/config/webpack.config.ts --noEmit",
|
|
"dev": "cross-env EXAMPLE=duplicates-esm node bin/webpack-dashboard.js -- webpack-cli --config examples/config/webpack.config.js --watch",
|
|
"dev-ts": "cross-env EXAMPLE=duplicates-esm node bin/webpack-dashboard.js -- webpack-cli --config examples/config/webpack.config.ts --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",
|
|
"peerDependencies": {
|
|
"webpack": "*"
|
|
},
|
|
"dependencies": {
|
|
"@changesets/cli": "^2.26.1",
|
|
"chalk": "^4.1.1",
|
|
"commander": "^8.0.0",
|
|
"cross-spawn": "^7.0.3",
|
|
"filesize": "^7.0.0",
|
|
"handlebars": "^4.1.2",
|
|
"inspectpack": "^4.7.1",
|
|
"neo-blessed": "^0.2.0",
|
|
"socket.io": "^4.1.3",
|
|
"socket.io-client": "^4.1.3"
|
|
},
|
|
"devDependencies": {
|
|
"@svitejs/changesets-changelog-github-compact": "^0.1.1",
|
|
"@types/node": "^22.1.0",
|
|
"babel-eslint": "^10.1.0",
|
|
"chai": "^4.3.4",
|
|
"codecov": "^3.8.3",
|
|
"cross-env": "^7.0.3",
|
|
"eslint": "^7.30.0",
|
|
"eslint-config-formidable": "^4.0.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-filenames": "^1.1.0",
|
|
"eslint-plugin-import": "^2.23.4",
|
|
"eslint-plugin-prettier": "^3.4.0",
|
|
"eslint-plugin-promise": "^5.1.0",
|
|
"mocha": "^9.0.2",
|
|
"npm-run-all": "^4.1.5",
|
|
"nyc": "^15.1.0",
|
|
"prettier": "^2.3.2",
|
|
"sinon": "^11.1.1",
|
|
"sinon-chai": "^3.7.0",
|
|
"ts-node": "^10.4.0",
|
|
"typescript": "^4.3.5",
|
|
"webpack": "^5.44.0",
|
|
"webpack-cli": "^4.7.2",
|
|
"webpack-stats-plugin": "^1.0.3"
|
|
},
|
|
"publishConfig": {
|
|
"provenance": true
|
|
}
|
|
} |