Dockerfile
This commit is contained in:
@@ -3,9 +3,15 @@
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"lint:tsc": "tsc --noEmit",
|
||||
"bun:dev": "NODE_ENV=development bun --hot ./src/entrypoint.bun.ts",
|
||||
"bun:build": "esbuild ./src/entrypoint.bun.ts --outdir=./dist --bundle --minify --format=esm --sourcemap --platform=node",
|
||||
"bun:start": "NODE_ENV=production bun ./dist/entrypoint.bun.js",
|
||||
"node:dev": "NODE_ENV=development tsx --watch ./src/entrypoint.node.ts",
|
||||
"lint:tsc": "tsc --noEmit"
|
||||
"node:build": "esbuild ./src/entrypoint.node.ts --outdir=./dist --bundle --minify --format=esm --sourcemap --platform=node",
|
||||
"node:start": "NODE_ENV=production node ./dist/entrypoint.node.js",
|
||||
"clean:dist": "rm -rf dist",
|
||||
"clean:node": "rm -rf node_modules"
|
||||
},
|
||||
"dependencies": {
|
||||
"@effect/opentelemetry": "^0.56.6",
|
||||
@@ -22,6 +28,7 @@
|
||||
"effect": "^3.17.13"
|
||||
},
|
||||
"devDependencies": {
|
||||
"esbuild": "^0.25.9",
|
||||
"tsx": "^4.20.5"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user