mirror of
https://github.com/kou029w/_.git
synced 2025-01-30 22:08:02 +00:00
19 lines
517 B
JSON
19 lines
517 B
JSON
{
|
|
"name": "api-example",
|
|
"version": "0.0.1",
|
|
"type": "module",
|
|
"private": true,
|
|
"devDependencies": {
|
|
"@fastify/autoload": "^5.2.0",
|
|
"@fastify/cors": "^8.1.0",
|
|
"dotenv": "^16.0.1",
|
|
"esbuild": "^0.14.53",
|
|
"fastify": "^4.3.0",
|
|
"pino-pretty": "^8.1.0"
|
|
},
|
|
"scripts": {
|
|
"dev": "yarn build && node -r dotenv/config dist/main.js | pino-pretty",
|
|
"build": "esbuild $(find src -name '*.ts') --platform=node --outdir=dist",
|
|
"start": "NODE_ENV=production node dist/main.js"
|
|
}
|
|
}
|