forked from gregberge/error-overlay-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.46 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
{
"name": "error-overlay-webpack-plugin",
"description": "Webpack plugin to automatically display an error overlay in your application.",
"keywords": [
"webpack",
"plugin",
"webpack-plugin",
"react",
"react-error-overlay",
"error-overlay"
],
"bugs": "https://github.com/smooth-code/error-overlay-webpack-plugin/issues",
"homepage": "https://github.com/smooth-code/error-overlay-webpack-plugin",
"repository": "https://github.com/smooth-code/error-overlay-webpack-plugin.git",
"version": "0.4.2",
"main": "lib/index.js",
"scripts": {
"build": "babel -d lib src",
"ci": "yarn build && yarn lint",
"format": "prettier --write \"**/*.{js,json,md}\" \"*.{js,json,md}\"",
"lint": "eslint .",
"prepublishOnly": "yarn build",
"release": "standard-version && conventional-github-releaser -p angular"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"babel-eslint": "^10.1.0",
"conventional-github-releaser": "^3.1.5",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"prettier": "^2.2.1",
"standard-version": "^9.1.0"
},
"license": "MIT",
"dependencies": {
"react-dev-utils": "^11.0.1",
"react-error-overlay": "^6.0.8",
"sockjs-client": "^1.5.0",
"url": "^0.11.0"
},
"peerDependencies": {
"webpack": "^4.0.0"
}
}