Skip to content

Instantly share code, notes, and snippets.

View suarezph's full-sized avatar
🎯
Focusing

suarezph suarezph

🎯
Focusing
View GitHub Profile
<link
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"
rel="stylesheet" />
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans',
Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
line-height: 1.5;
color: #1b1f24;
margin: 0;
@suarezph
suarezph / package.json
Last active August 15, 2022 10:41
Base setup
{
"name": "base-setup",
"version": "1.0.0",
"description": "This is a base setup for frontend",
"bin": "./setup.js"
}
@suarezph
suarezph / package.json
Last active December 16, 2020 12:36
validates that the versions of tools specified in `engines`
{
"name": "local-computer-validator",
"version": "1.0.0",
"description": "To validate local computers of proper versions of node and npm installed",
"bin": "./validate-system.js",
"dependencies": {
"semver": "7.1.3"
}
}
@suarezph
suarezph / package.json
Last active December 16, 2020 12:41
setup scripts for production
{
"name": "local-env-setup",
"version": "1.0.0",
"description": "pre-requisite setup",
"bin": "./setup.js"
}