-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 914 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "gatemaster-api",
"version": "1.0.0",
"description": "a multi tenant api gives access to the user based on their roles",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "tsx watch src/main.ts",
"migrate": "drizzle-kit generate:pg"
},
"author": "saikiran Annam",
"license": "ISC",
"dependencies": {
"argon2": "^0.40.1",
"dayjs": "^1.11.10",
"drizzle-orm": "^0.30.4",
"fastify": "^4.26.2",
"fastify-guard": "^2.0.0",
"fastify-zod": "^1.4.0",
"jsonwebtoken": "^9.0.2",
"pg": "^8.11.3",
"pino": "^8.19.0",
"pino-pretty": "^11.0.0",
"zennv": "^0.1.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.6",
"@types/pg": "^8.11.4",
"drizzle-kit": "^0.20.14",
"tsx": "^4.7.1",
"typescript": "^5.4.3",
"zod-to-json-schema": "^3.22.4"
}
}