forked from pmmmwh/react-refresh-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.66 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
{
"name": "@pmmmwh/react-refresh-webpack-plugin",
"version": "0.1.3",
"description": "An **EXPERIMENTAL** Webpack plugin to enable \"Fast Refresh\" (also previously known as _Hot Reloading_) for React components.",
"keywords": [
"react",
"javascript",
"webpack",
"refresh",
"hmr",
"hotreload",
"livereload",
"live",
"edit",
"hot",
"reload"
],
"homepage": "https://github.com/pmmmwh/react-refresh-webpack-plugin#readme",
"bugs": {
"url": "https://github.com/pmmmwh/react-refresh-webpack-plugin/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pmmmwh/react-refresh-webpack-plugin.git"
},
"license": "MIT",
"author": "Michael Mok",
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"lint": "yarn run lint:eslint && yarn run lint:prettier",
"lint:fix": "yarn run lint:eslint:fix && yarn run lint:prettier:fix",
"lint:eslint": "eslint --report-unused-disable-directives \"**/*.js\"",
"lint:eslint:fix": "yarn run lint:eslint --fix",
"lint:prettier": "prettier --check \"**/*.{js,jsx,json,md}\"",
"lint:prettier:fix": "prettier --write \"**/*.{js,jsx,json,md}\""
},
"dependencies": {
"ansi-html": "^0.0.7",
"error-stack-parser": "^2.0.4",
"html-entities": "^1.2.1",
"lodash.debounce": "^4.0.8",
"react-dev-utils": "^9.1.0",
"sockjs-client": "^1.4.0"
},
"devDependencies": {
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"prettier": "^1.18.2",
"react-refresh": "^0.7.0",
"webpack": "^4.41.2"
},
"peerDependencies": {
"react-refresh": ">= 0.7"
},
"engines": {
"node": ">= 8.x"
}
}