-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
40 lines (40 loc) · 1003 Bytes
/
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
{
"name": "webapck-internal-plugin-relation",
"version": "0.1.0",
"description": "a tiny tool for showing the relation of webpack internal plugins",
"main": "index.js",
"scripts": {
"start": "node run && webpack-dev-server",
"build": "rm -rf ./dist && node run && webpack",
"data": "node run",
"watchSource": "node watch"
},
"keywords": [
"webapck",
"plugin",
"tool",
"relation"
],
"author": "alienzhou",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.1.0",
"@babel/traverse": "^7.1.0",
"@babel/types": "^7.0.0",
"chalk": "^2.4.1",
"chokidar": "^2.0.4",
"css-loader": "^1.0.0",
"echarts": "^4.2.0-rc.1",
"file-loader": "^2.0.0",
"fs-extra": "^7.0.0",
"html-webpack-plugin": "^3.2.0",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.4.3",
"webpack": "^4.19.1",
"webpack-cli": "^3.1.1"
},
"devDependencies": {
"webpack-dev-server": ">=3.1.11"
}
}