This commit is contained in:
Morten Olsen
2025-12-09 20:32:08 +01:00
commit 2cfd54c344
54 changed files with 8794 additions and 0 deletions

33
package.json Normal file
View File

@@ -0,0 +1,33 @@
{
"version": "1.0.0",
"name": "@morten-olsen/stash-repo",
"private": true,
"type": "module",
"scripts": {
"test:lint": "eslint",
"build": "turbo build",
"build:dev": "tsc --build --watch",
"test:unit": "vitest --run --coverage --passWithNoTests",
"test": "pnpm run \"/^test:.+/\""
},
"packageManager": "pnpm@10.6.0",
"workspaces": [
"packages/*",
"apps/*"
],
"devDependencies": {
"turbo": "2.6.3",
"typescript": "5.9.3",
"vitest": "4.0.15",
"@vitest/coverage-v8": "4.0.15",
"@eslint/eslintrc": "3.3.3",
"@eslint/js": "9.39.1",
"@pnpm/find-workspace-packages": "6.0.9",
"eslint": "9.39.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-prettier": "5.5.4",
"prettier": "3.7.4",
"typescript-eslint": "8.49.0"
}
}