Files
armandine/package.json

27 lines
875 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@9.15.0",
"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",
"stylelint": "^16.10.0",
"stylelint-config-recommended": "^14.0.0"
}
}