-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 875 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 875 Bytes
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
{
"name": "cra-bundle-analyzer",
"version": "0.1.1",
"author": "Sven Gaubert",
"description": "Use Webpack Bundle Analyzer on a create-react-app application without ejecting",
"main": "src/index.js",
"keywords": [
"react",
"create-react-app",
"minification",
"webpack",
"bundle",
"analyzer",
"modules",
"size"
],
"engines": {
"node": ">= 10"
},
"bugs": {
"url": "https://github.com/svengau/cra-bundle-analyzer/issues"
},
"homepage": "https://github.com/svengau/cra-bundle-analyzer#readme",
"license": "MIT",
"bin": {
"cra-bundle-analyzer": "src/index.js"
},
"dependencies": {
"minimist": "^1.2.5",
"progress-bar-webpack-plugin": "^2.1.0",
"webpack-bundle-analyzer": "^3.6.0"
},
"peerDependencies": {
"chalk": ">=3 <=4.1.2",
"react-scripts": ">=3",
"webpack": ">=4"
}
}