-
Notifications
You must be signed in to change notification settings - Fork 363
/
package.json
83 lines (83 loc) · 2.57 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"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
}
}