Skip to content

Commit

Permalink
chore: fix deps
Browse files Browse the repository at this point in the history
  • Loading branch information
sripwoud committed Jul 11, 2024
1 parent 81b6ffa commit 68a73c0
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 14 deletions.
Binary file modified bun.lockb
Binary file not shown.
27 changes: 13 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,31 +1,30 @@
{
"name": "ts-template",
"scripts": {
"build": "barrelsby --config .barrelsby.json && rm -rf dist && bun build src --outdir dist --sourcemap=inline --target=bun",
"build.docker": "docker build -t ts-template .",
"prepare": "husky",
"start": "bun run build && bun run start.prod",
"start.dev": "bun --watch --hot src/index.ts",
"start.docker": "docker run -it --rm ts-template",
"start.prod": "bun dist/src/index.js",
"test": "bun test --coverage",
"test.watch": "bun test --watch"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"barrelsby": "^2.8.1",
"bun-types": "^1.0.9",
"concurrently": "^8.2.2",
"dprint": "^0.47.2",
"husky": "^9.0.11",
"is-ci": "^3.0.1",
"lint-staged": "^13.1.0",
"reflect-metadata": "^0.1.13",
"tsc-files": "^1.1.4",
"typescript": "^5.2.2"
},
"dependencies": {
"barrelsby": "^2.5.1"
},
"engines": {
"node": ">=19"
},
"scripts": {
"build": "barrelsby --config .barrelsby.json && rm -rf dist && bun build src --outdir dist --sourcemap=inline --target=bun",
"build.docker": "docker build -t ts-template .",
"prepare": "husky",
"start": "bun run build && bun run start.prod",
"start.dev": "bun --watch --hot src/index.ts",
"start.docker": "docker run -it --rm ts-template",
"start.prod": "bun dist/src/index.js",
"test": "bun test --coverage",
"test.watch": "bun test --watch"
}
}

0 comments on commit 68a73c0

Please sign in to comment.