-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.17 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
{
"name": "jaime.gomezobregon.com",
"private": true,
"description": "Mi sitio web personal y sus contenidos desde 2006.",
"homepage": "https://jaime.gomezobregon.com",
"bugs": {
"url": "https://github.com/JaimeObregon/jaime.gomezobregon.com/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/JaimeObregon/jaime.gomezobregon.com.git"
},
"license": "Véase el fichero LICENSE",
"author": "Jaime Gómez-Obregón",
"type": "module",
"scripts": {
"build": "bin/build.sh",
"serve": "bin/serve.sh"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"stylelint": {
"overrides": [
{
"files": [
"*.js"
],
"customSyntax": "postcss-styled-syntax"
}
],
"extends": [
"stylelint-config-standard",
"stylelint-config-recess-order"
],
"rules": {
"no-descending-specificity": null
}
},
"dependencies": {},
"devDependencies": {
"esbuild": "^0.24.0",
"postcss-styled-syntax": "^0.6.4",
"prettier": "^3.2.5",
"stylelint": "^16.10.0",
"stylelint-config-recess-order": "^5.0.1",
"stylelint-config-standard": "^36.0.0"
}
}