added tooling (eslint, typescript and prettier)

This commit is contained in:
Carl-Gerhard Lindesvärd
2023-11-02 12:14:37 +01:00
parent 575b3c23bf
commit 493e1b7650
82 changed files with 1890 additions and 1363 deletions

View File

@@ -1,19 +1,25 @@
{
"name": "@mixan/root",
"version": "1.0.0",
"keywords": [],
"author": "",
"private": true,
"license": "MIT",
"author": "Carl-Gerhard Lindesvärd",
"packageManager": "pnpm@8.7.6",
"license": "ISC",
"module": "index.ts",
"type": "module",
"scripts": {
"dev": "pnpm -r dev"
"dev": "pnpm -r dev",
"format": "pnpm -r format --cache --cache-location=\"node_modules/.cache/.prettiercache\"",
"format:fix": "pnpm -r format --write --cache --cache-location=\"node_modules/.cache/.prettiercache\"",
"lint": "pnpm -r lint",
"lint:fix": "pnpm -r lint --fix",
"lint:workspace": "pnpm dlx sherif@latest",
"typecheck": "pnpm -r typecheck"
},
"devDependencies": {
"semver": "^7.5.4"
},
"peerDependencies": {
"typescript": "^5.0.0"
"typescript": "^5.2.0"
}
}
}