-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.31 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
{
"name": "migueldemoura.com",
"license": "MIT",
"private": true,
"dependencies": {
"normalize-scss": "^7.0.1",
"turbolinks": "^5.2.0",
"zooming": "^2.1.1"
},
"devDependencies": {
"chart.js": "^4.4.2",
"@biomejs/biome": "^1.7.0",
"file-saver": "^2.0.5",
"html-minifier-terser": "^7.2.0",
"htmlhint": "^1.1.4",
"remark-cli": "^12.0.0",
"remark-lint": "^10.0.0",
"remark-preset-lint-consistent": "^6.0.0",
"remark-preset-lint-markdown-style-guide": "^6.0.0",
"remark-preset-lint-recommended": "^7.0.0",
"stylelint": "^16.3.1",
"stylelint-config-concentric-order": "^5.2.0",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-scss": "^6.2.1"
},
"scripts": {
"setup": "bundle install --path ruby_gems && npm install",
"build": "bundle exec jekyll build",
"serve": "bundle exec jekyll serve",
"deploy": "bin/deploy.sh",
"clean": "rm -rf package-lock.json Gemfile.lock node_modules/ _site/ _deploy/ .bundle/ .jekyll-cache/ ruby_gems/",
"lint:scss": "stylelint .",
"lint:js": "biome ci .",
"lint:html": "htmlhint _site _deploy",
"lint:md": "remark _posts",
"lint:sh": "shellcheck **/*.sh"
}
}