Skip to content

Instantly share code, notes, and snippets.

View Monehin's full-sized avatar
🎯
Focusing

Monehin Emmanuel Monehin

🎯
Focusing
View GitHub Profile
@jherr
jherr / package.json
Created January 27, 2022 23:27
Simple monorepo starter
{
"name": "packages",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"private": true,
"scripts": {
"start": "concurrently \"wsrun --parallel start\""
},
"workspaces": [
@leny
leny / .eslintrc.json
Last active August 3, 2024 16:44
ESLint config file for node.js + ES6 projects.
{
"env": {
"node": true,
"es6": true
},
"ecmaFeatures": {
"arrowFunctions": true,
"blockBindings": true,
"classes": true,
"defaultParameters": true,