-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.16 KB
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
{
"name": "react-app-rewire-html-webpack-plugin",
"version": "1.2.1",
"description": "Let you override html-webpack-plugin options in react-scripts",
"main": "index.js",
"scripts": {
"precommit": "lint-staged"
},
"keywords": [
"create-react-app",
"react-scripts",
"react-app-rewired",
"react-app-rewire",
"html-webpack-plugin"
],
"license": "MIT",
"author": "Cheng Han<dongdon0639@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/Cheng0639/react-app-rewire-html-webpack-plugin.git"
},
"bugs": {
"url": "https://github.com/Cheng0639/react-app-rewire-html-webpack-plugin/issues"
},
"homepage": "https://github.com/Cheng0639/react-app-rewire-html-webpack-plugin#readme",
"dependencies": {
"deepmerge": "^4.2.2",
"semver": "^7.3.5"
},
"devDependencies": {
"husky": "^0.14.3",
"lint-staged": "^4.2.1",
"prettier": "^1.7.0"
},
"peerDependencies": {
"react-app-rewired": "^2.1.5",
"html-webpack-plugin": "*",
"webpack": "*"
},
"lint-staged": {
"*.js": ["prettier --write", "git add"],
"*.json": ["prettier --parser json --write", "git add"]
}
}