-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.82 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
72
73
74
75
76
77
{
"name": "website",
"version": "1.0.0",
"private": true,
"description": "Personal website of Germán Freixinós López, front-end web developer.",
"keywords": [
"11ty-website",
"blog",
"eleventy-site",
"eleventy-website",
"eleventy",
"frontend-developer",
"frontend-web-developer",
"frontend-web",
"frontend",
"jamstack-site",
"jamstack",
"netlify",
"personal-website",
"portfolio-page",
"portfolio-site",
"portfolio-website",
"portfolio",
"potfolioweb",
"static-site",
"website"
],
"homepage": "https://github.com/germanfrelo/website#readme",
"bugs": {
"url": "https://github.com/germanfrelo/website/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/germanfrelo/website.git"
},
"license": "ISC",
"author": "Germán Freixinós López",
"main": ".eleventy.js",
"scripts": {
"build": "eleventy",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "npm run lint:css && npm run lint:js",
"lint:css": "stylelint --max-warnings 0 \"**/*.css\"",
"lint:css:fix": "npm run lint:css -- --fix",
"lint:fix": "npm run lint:css:fix && npm run lint:js:fix",
"lint:js": "eslint --max-warnings 0",
"lint:js:fix": "npm run lint:js -- --fix",
"prepare": "husky",
"start": "eleventy --serve"
},
"lint-staged": {
"*.css": [
"stylelint --max-warnings 0",
"prettier --write"
],
"*.js": [
"eslint --max-warnings 0 --no-warn-ignored",
"prettier --write"
],
"!(*.css|*.js)": [
"prettier --write --ignore-unknown"
]
},
"devDependencies": {
"@11ty/eleventy": "2.0.1",
"@eslint/js": "9.14.0",
"eslint": "9.14.0",
"globals": "15.12.0",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"stylelint": "16.10.0",
"stylelint-config-recess-order": "5.1.1",
"stylelint-config-standard": "36.0.1"
}
}