Files
armandine/package.json
2026-02-10 21:09:01 -03:00

28 lines
900 B
JSON
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"name": "armandine",
"version": "1.0.0",
"type": "module",
"private": true,
"packageManager": "pnpm@10.29.2",
"description": "Armandine gallery static Nginx site",
"scripts": {
"build": "docker build -t git.mifi.dev/mifi-holdings/armandine:latest .",
"push": "docker push git.mifi.dev/mifi-holdings/armandine:latest",
"lint": "pnpm lint:js && pnpm lint:css",
"lint:js": "eslint src",
"lint:css": "stylelint \"src/**/*.css\"",
"format": "prettier --write \"src/**/*.{html,css,js,json}\"",
"format:check": "prettier --check \"src/**/*.{html,css,js,json}\"",
"serve": "pnpm exec serve src -p 3000"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.3",
"serve": "^14.2.4",
"stylelint": "^16.10.0",
"stylelint-config-recommended": "^14.0.0"
}
}