forked from webpackmonitor/webpackmonitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.78 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
{
"name": "webpackmonitor",
"version": "1.0.0",
"description": "A tool for monitoring webpack optimization metrics through the development process",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"stats": "webpack --env production --profile --json > stats.json",
"start": "webpack-dev-server --env development",
"build": "webpack --env development",
"confirm": "webpack --env confirm",
"launch": "webpack --env launch",
"trial": "webpack --env trial"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webpackmonitor/webpackmonitor.git"
},
"author": "Jon Roach, Balal Zuhair, Gordon Yu",
"license": "MIT",
"bugs": {
"url": "https://github.com/webpackmonitor/webpackmonitor/issues"
},
"homepage": "https://github.com/webpackmonitor/webpackmonitor#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^1.1.5",
"glob": "^7.1.2",
"html-webpack-plugin": "^2.30.1",
"html-webpack-template": "^5.6.0",
"json-loader": "^0.5.7",
"opener": "^1.4.3",
"purify-css": "^1.2.5",
"purifycss-webpack": "^0.7.0",
"style-loader": "^0.18.2",
"webpack": "^3.5.6",
"webpack-dev-server": "^2.8.2",
"webpack-merge": "^4.1.0",
"webpack-monitor": "^1.0.3"
},
"dependencies": {
"colors": "^1.1.2",
"d3": "^4.10.2",
"lodash.unionby": "^4.8.0",
"react": "^15.6.1",
"react-bootstrap": "^0.31.3",
"react-dom": "^15.6.1",
"react-router-dom": "^4.2.2"
}
}