-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
64 lines (64 loc) · 1.1 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
{
"type": "module",
"scripts": {
"start": "wmr",
"build": "wmr build --prerender",
"serve": "wmr serve"
},
"eslintConfig": {
"extends": [
"preact",
"prettier",
"plugin:prettier/recommended"
],
"plugins": [
"prettier",
"import"
],
"import/extensions": [
"error",
"always",
{
"ignorePackages": true
}
]
},
"eslintIgnore": [],
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"useTabs": true,
"printWidth": 120,
"arrowParens": "avoid",
"overrides": [
{
"files": "*.md",
"options": {
"useTabs": false,
"tabWidth": 2
}
}
]
},
"alias": {
"react": "preact/compat",
"react-dom": "preact/compat"
},
"dependencies": {
"preact": "^10.5.12",
"preact-iso": "^2.0.0"
},
"devDependencies": {
"@wmr-plugins/directory-import": "^0.1.1",
"eslint": "^7.22.0",
"eslint-config-preact": "^1.1.3",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"marked": "^2.0.1",
"prettier": "^2.2.1",
"sass": "^1.32.12",
"wmr": "^1.7.0",
"yaml": "^1.10.2"
}
}