Skip to content

Commit

Permalink
fix: deps (#10)
Browse files Browse the repository at this point in the history
# 🤖 Linear

Closes ZKS-XXX

## Description
  • Loading branch information
0xkenj1 authored May 24, 2024
1 parent 5aaecaf commit 5d538ab
Show file tree
Hide file tree
Showing 5 changed files with 113 additions and 139 deletions.
9 changes: 6 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,21 @@
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"workspaces": [
"packages/*",
"tooling/*"
"packages/**",
"tooling/**"
],
"devDependencies": {
"@commitlint/config-conventional": "19.2.2",
"@hyperhub/test-config": "workspace:*",
"@hyperhub/typescript-config": "workspace:*",
"@types/node": "18.13.0",
"commitlint": "19.3.0",
"husky": "9.0.11",
"lint-staged": "15.2.4",
"prettier": "3.2.5",
"turbo": "1.13.3"
"ts-node-dev": "2.0.0",
"turbo": "1.13.3",
"typescript": "4.9.4"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": "eslint --cache --fix",
Expand Down
7 changes: 1 addition & 6 deletions packages/serverless/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,10 @@
"@hyperhub/typescript-config": "workspace:*",
"@serverless/typescript": "3.27.0",
"@types/aws-lambda": "8.10.71",
"@types/node": "18.13.0",
"@vitest/coverage-v8": "1.6.0",
"esbuild": "0.16.0",
"serverless": "3.27.0",
"serverless-esbuild": "1.37.3",
"serverless-iam-roles-per-function": "3.2.0",
"serverless-offline": "12.0.4",
"ts-node-dev": "2.0.0",
"typescript": "4.9.4",
"vitest": "1.6.0"
"serverless-offline": "12.0.4"
}
}
4 changes: 2 additions & 2 deletions packages/serverless/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"extends": "@hyperhub/typescript-config/base.json",
"include": ["."],
"include": ["./src/**/*.ts"],
"exclude": ["dist", "node_modules"],
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist",
"outDir": "./dist"
}
}
1 change: 0 additions & 1 deletion tooling/test-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
"devDependencies": {
"@hyperhub/typescript-config": "workspace:*",
"@vitest/coverage-v8": "1.6.0",
"typescript": "5.4.5",
"vitest": "1.6.0"
}
}
Loading

0 comments on commit 5d538ab

Please sign in to comment.