-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.52 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": "^8.0.0",
"turbolinks": "^5.2.0",
"zooming": "^2.1.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"chart.js": "^4.4.7",
"esbuild": "^0.24.2",
"file-saver": "^2.0.5",
"html-minifier-terser": "^7.2.0",
"htmlhint": "^1.1.4",
"remark-cli": "^12.0.1",
"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",
"shellcheck": "^3.0.0",
"stylelint": "^16.12.0",
"stylelint-config-concentric-order": "^5.2.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-scss": "^6.10.0"
},
"scripts": {
"setup": "yarn install",
"build": "yarn run esbuild js/main.js --bundle --minify --outfile=static/main.js && zola build",
"serve": "yarn run esbuild js/main.js --bundle --minify --outfile=static/main.js && zola serve",
"lint": "stylelint . && biome ci . && htmlhint public && remark content && shellcheck **/*.sh",
"deploy": "bin/deploy.sh",
"clean": "rm -rf node_modules/ public/ deploy/"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}