30 lines
793 B
JSON
30 lines
793 B
JSON
|
|
{
|
||
|
|
"name": "node-server",
|
||
|
|
"version": "1.0.0",
|
||
|
|
"description": "",
|
||
|
|
"main": "index.js",
|
||
|
|
"scripts": {
|
||
|
|
"dev": "tsx watch src/index.ts",
|
||
|
|
"clean": "rm -rf dist",
|
||
|
|
"typecheck": "tsc --noEmit",
|
||
|
|
"build": "npm run clean && npm run typecheck && esbuild src/index.ts --platform=node --format=cjs --bundle --sourcemap --minify --outdir=dist",
|
||
|
|
"start": "node dist/index.js",
|
||
|
|
"test": "echo \"No tests yet\"",
|
||
|
|
"lint": "eslint src --ext .ts"
|
||
|
|
},
|
||
|
|
"keywords": [],
|
||
|
|
"author": "",
|
||
|
|
"license": "ISC",
|
||
|
|
"devDependencies": {
|
||
|
|
"@repo/eslint-config": "workspace:*",
|
||
|
|
"@repo/typescript-config": "workspace:*",
|
||
|
|
"tsx": "^4.19.2",
|
||
|
|
"typescript": "^5.6.3"
|
||
|
|
},
|
||
|
|
"dependencies": {
|
||
|
|
"@types/express": "^5.0.0",
|
||
|
|
"esbuild": "^0.24.0",
|
||
|
|
"express": "^4.21.1"
|
||
|
|
}
|
||
|
|
}
|