TSFastifyExample/package.json

29 lines
694 B
JSON
Raw Normal View History

2024-08-08 08:20:58 -04:00
{
"name": "ts_fastify_example",
"module": "src/index.ts",
"type": "module",
"scripts": {
"bun-dev": "bun run --watch src/index.ts --development",
"bun-prod": "bun run src/index.ts",
"dev": "nodemon --watch src --exec 'tsx src/index.ts'",
"npm-prod": "tsx src/index.ts",
"pnpm-prod": "tsx src/index.ts",
"yarn-prod": "tsx src/index.ts"
2024-08-08 08:20:58 -04:00
},
"devDependencies": {
"@types/bun": "latest",
"@types/ejs": "^3.1.5",
"tsx": "^3.8.0",
"nodemon": "^3.1.4"
2024-08-08 08:20:58 -04:00
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@fastify/static": "^7.0.4",
"@fastify/view": "^9.1.0",
"ejs": "^3.1.10",
"fastify": "^4.28.1"
}
}