-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.86 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
{
"name": "clementbiron-website",
"version": "0.0.1",
"description": "The clementbiron.com website",
"homepage": "https://github.com/clementbiron/clementbiron.com#readme",
"bugs": {
"url": "https://github.com/clementbiron/clementbiron.com/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clementbiron/clementbiron.com.git"
},
"license": "EUPL v1.2",
"author": "clementbiron.com",
"scripts": {
"build": "hugo --minify --cleanDestinationDir",
"test": "npm run lint:markdown && npm run lint:css && npm run lint:js && npm run lint:html && npm run test:links && npm run test:html",
"pretest:links": "npm run build",
"test:links": "linkinator ./public --recurse --verbosity error",
"pretest:html": "npm run build",
"test:html": "html-validate ./public",
"start:dev": "hugo serve --watch --logLevel debug --disableFastRender --printI18nWarnings",
"lint:markdown": "markdownlint *.md content/**/*.md",
"lint:css": "stylelint \"themes/clementbiron2024/assets/css/**/*.css\"",
"lint:js": "eslint themes/clementbiron2024/assets/js/",
"lint:html": "eslint themes/clementbiron2024/layouts/**/*.html -c .htmleslintrc.yaml"
},
"devDependencies": {
"@html-eslint/eslint-plugin": "^0.23.1",
"@html-eslint/parser": "^0.23.0",
"@stylistic/stylelint-config": "^1.0.1",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"html-validate": "^8.12.0",
"linkinator": "^6.0.4",
"lucide": "^0.344.0",
"markdownlint-cli": "^0.39.0",
"minireset.css": "^0.0.7",
"postcss": "^8.4.35",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.0.1",
"postcss-mixins": "^9.0.4",
"postcss-preset-env": "^9.4.0",
"simple-icons": "^11.11.0",
"stylelint": "^16.2.1",
"stylelint-config-recess-order": "^5.0.0",
"stylelint-config-standard": "^36.0.0"
}
}