chore: Adds initial code.

This commit is contained in:
Tera << 8 2024-04-17 00:51:53 +00:00
parent a4ea6406e6
commit 939eb0b9d7
8 changed files with 1282 additions and 17 deletions

View file

@ -3,6 +3,7 @@
"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",
@ -13,7 +14,14 @@
"author": "greysoh",
"license": "BSD-3-Clause",
"devDependencies": {
"@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"
}
}