-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.36 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
{
"name": "react-app-rewire-compression-plugin",
"version": "1.0.0",
"description": "Add compression-webpack-plugin to a react-app-rewired config.",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
],
"*.json": [
"prettier --parser json --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArVan/react-app-rewire-compression-plugin.git"
},
"keywords": [
"compression",
"compression-webpack-plugin",
"webpack",
"react-app-rewired"
],
"author": "Arpy Vanyan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ArVan/react-app-rewire-compression-plugin/issues"
},
"homepage": "https://github.com/ArVan/react-app-rewire-compression-plugin#readme",
"dependencies": {
"compression-webpack-plugin": "^1.0.0"
},
"devDependencies": {
"eslint": "^4.7.0",
"eslint-config-prettier": "^2.5.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"lint-staged": "^4.2.1",
"prettier": "^1.7.0"
}
}