-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
71 lines (71 loc) · 1.33 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
{
"name": "next-purgecss",
"version": "4.0.0",
"keywords": [
"next-plugins",
"next",
"next.js",
"purgecss"
],
"description": "nextjs + purgecss for faster websites 🔥",
"main": "index.js",
"files": [
"index.js"
],
"author": "lucleray",
"homepage": "https://github.com/lucleray/next-purgecss#readme",
"bugs": {
"url": "https://github.com/lucleray/next-purgecss/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/lucleray/next-purgecss.git"
},
"license": "MIT",
"dependencies": {
"glob-all": "3.1.0",
"purgecss-webpack-plugin": "2.1.0"
},
"devDependencies": {
"babel-eslint": "^10.0.2",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"prettier": "^2.0.1"
},
"scripts": {
"lint": "eslint '**/*.js'"
},
"eslintConfig": {
"parser": "babel-eslint",
"env": {
"node": true,
"es6": true,
"browser": true
},
"extends": [
"eslint:recommended",
"prettier"
]
},
"eslintIgnore": [
"examples"
],
"prettier": {
"semi": false,
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint",
"git add"
]
}
}