forked from pmmmwh/react-refresh-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 3.6 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "@pmmmwh/react-refresh-webpack-plugin",
"version": "0.4.0-beta.9",
"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": "lib/index.js",
"types": "types/index.d.ts",
"files": [
"client",
"lib",
"loader",
"overlay",
"sockets",
"types"
],
"scripts": {
"pretest": "patch-package && yarn link && yarn link \"@pmmmwh/react-refresh-webpack-plugin\"",
"posttest": "yarn unlink \"@pmmmwh/react-refresh-webpack-plugin\"",
"test": "node scripts/test.js",
"test:webpack-5": "WEBPACK_VERSION=5 yarn test",
"lint": "eslint --report-unused-disable-directives --ext .js .",
"lint:fix": "yarn lint --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md}\"",
"generate-types": "tsc -p tsconfig.json && rimraf \"types/{globals.*,runtime,utils}\" && yarn format",
"prepublishOnly": "rimraf types && yarn generate-types"
},
"dependencies": {
"ansi-html": "^0.0.7",
"error-stack-parser": "^2.0.6",
"html-entities": "^1.2.1",
"native-url": "^0.2.6",
"schema-utils": "^2.6.5",
"source-map": "^0.7.3"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@types/json-schema": "^7.0.5",
"@types/node": "^14.0.24",
"@types/puppeteer": "^3.0.1",
"@types/webpack": "^4.41.21",
"@webpack-cli/serve": "^1.0.1-alpha.5",
"babel-loader": "^8.1.0",
"cross-spawn": "^7.0.3",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"fs-extra": "^9.0.1",
"get-port": "^5.1.1",
"jest": "^26.1.0",
"jest-circus": "^26.1.0",
"jest-environment-node": "^26.1.0",
"jest-junit": "^11.0.1",
"jest-watch-typeahead": "^0.6.0",
"memfs": "^3.2.0",
"nanoid": "^3.1.10",
"patch-package": "^6.2.2",
"prettier": "^2.0.5",
"puppeteer": "^5.2.1",
"react-refresh": "^0.8.3",
"rimraf": "^3.0.2",
"sourcemap-validator": "^2.1.0",
"type-fest": "^0.16.0",
"typescript": "3.9.7",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-cli.beta": "npm:webpack-cli@^4.0.0-beta.8",
"webpack-dev-server": "^3.11.0",
"webpack-hot-middleware": "^2.25.0",
"webpack-plugin-serve": "^1.0.1",
"webpack.next": "npm:webpack@^5.0.0-beta.22",
"yn": "^4.0.0"
},
"peerDependencies": {
"@types/webpack": "4.x",
"react-refresh": "^0.8.3",
"sockjs-client": "^1.4.0",
"type-fest": "^0.13.1",
"webpack": ">=4.43.0 <6.0.0",
"webpack-dev-server": "3.x",
"webpack-hot-middleware": "2.x",
"webpack-plugin-serve": "0.x || 1.x"
},
"peerDependenciesMeta": {
"@types/webpack": {
"optional": true
},
"sockjs-client": {
"optional": true
},
"type-fest": {
"optional": true
},
"webpack-dev-server": {
"optional": true
},
"webpack-hot-middleware": {
"optional": true
},
"webpack-plugin-serve": {
"optional": true
}
},
"engines": {
"node": ">= 10.x"
}
}