mirror of
https://github.com/SrIzan10/starters.git
synced 2026-05-01 11:05:16 +00:00
22 lines
426 B
JSON
22 lines
426 B
JSON
{
|
|
"name": "fastify",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"author": "Faraz Patankar",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"dev": "nodemon index.ts",
|
|
"build": "tsc -p tsconfig.json",
|
|
"start": "node dist/index.js"
|
|
},
|
|
"dependencies": {
|
|
"fastify": "^3.15.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^15.6.1",
|
|
"nodemon": "^2.0.7",
|
|
"ts-node": "^10.0.0",
|
|
"typescript": "^4.2.4"
|
|
}
|
|
}
|