mirror of
https://github.com/LucasVbr/fcc-timestamp-microservice.git
synced 2026-05-13 17:21:48 +00:00
20 lines
390 B
JSON
20 lines
390 B
JSON
{
|
|
"name": "fcc-timestamp-microservice",
|
|
"module": "index.ts",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "bun --watch run index.ts",
|
|
"build": "bun build index.ts --outdir ./dist "
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest",
|
|
"@types/express": "^5.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"dependencies": {
|
|
"express": "^4.21.1"
|
|
}
|
|
}
|