Initial Commit

This commit is contained in:
2024-12-19 13:54:15 +05:30
commit 970a972b11
17 changed files with 1487 additions and 0 deletions

25
package.json Normal file
View File

@@ -0,0 +1,25 @@
{
"name": "quicker_permits",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "tsc -w & node --watch --env-file=.env dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@paralleldrive/cuid2": "^2.2.2",
"fastify": "^5.2.0",
"fastify-type-provider-zod": "^4.0.2",
"fastify-zod": "^1.4.0",
"mongoose": "^8.9.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.10.2",
"typescript": "^5.7.2"
}
}