This repository has been archived by the owner on May 6, 2019. It is now read-only.
forked from FormidableLabs/webpack-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.21 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
{
"name": "webpack-dashboard",
"version": "3.0.2",
"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": "npm run format-check && npm run lint && npm run test && npm run check-ts",
"check-ci": "npm run format-check && npm run lint && npm run test-cov && npm run 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": {
"commander": "^2.15.1",
"cross-spawn": "^6.0.5",
"filesize": "^3.6.1",
"handlebars": "^4.1.0",
"inspectpack": "^4.2.1",
"most": "^1.7.3",
"neo-blessed": "^0.2.0",
"socket.io": "^2.1.1",
"socket.io-client": "^2.1.1"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"chai": "^4.1.2",
"cross-env": "^5.2.0",
"eslint": "^4.19.1",
"eslint-config-formidable": "^4.0.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-filenames": "^1.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^3.7.0",
"mocha": "^5.2.0",
"nyc": "^13.3.0",
"prettier": "^1.16.4",
"sinon": "^5.0.7",
"sinon-chai": "^3.0.0",
"typescript": "^3.2.4",
"webpack": "^4.8.3",
"webpack-cli": "^3.2.3",
"webpack-stats-plugin": "^0.2.1"
}
}