hermes/package.json
2024-04-17 15:39:29 -04:00

28 lines
769 B
JSON

{
"name": "typescript-base",
"version": "1.0.0",
"description": "Base TypeScript template to use",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "cd out && node --enable-source-maps index.js",
"dev": "nodemon --watch src --ext ts,js,mjs,json --exec \"tsc && cd out && node --enable-source-maps index.js\""
},
"keywords": [],
"author": "greysoh",
"license": "BSD-3-Clause",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/node": "^20.12.7",
"nodemon": "^3.0.3",
"prisma": "^5.12.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@prisma/client": "^5.12.1",
"bcrypt": "^5.1.1",
"fastify": "^4.26.2"
}
}