-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
51 lines (51 loc) · 1.07 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
{
"name": "next-plugin-preact-workspace",
"version": "0.0.0",
"main": "index.js",
"repository": "https://github.com/sventschui/next-plugin-preact",
"author": "Sven Tschui <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"eslint": "^7.6.0",
"eslint-config-developit": "^1.2.0",
"eslint-config-prettier": "^6.11.0",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"pretty-quick": "^3.0.2"
},
"resolutions": {
"node-fetch": "2.6.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged packages/next-plugin-preact/*.js packages/demo/*.js packages/demo/pages/*.js && eslint packages/**/*.js"
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid"
},
"eslintConfig": {
"extends": [
"developit",
"prettier"
],
"settings": {
"react": {
"pragma": "React",
"version": "16.13"
}
},
"rules": {
"indent": [
"warn",
2
]
}
}
}