-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.2 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
{
"name": "multitenant-api",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/node": "^20.3.0",
"@types/pg": "^8.10.2",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"drizzle-kit": "^0.18.1",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"pino-pretty": "^10.0.0",
"prettier": "^2.8.8",
"tsc-watch": "^6.0.4",
"typescript": "^5.1.3"
},
"dependencies": {
"@fastify/jwt": "^7.0.0",
"bcrypt": "^5.1.0",
"dotenv": "^16.1.4",
"drizzle-orm": "^0.26.5",
"fastify": "^4.18.0",
"fastify-guard": "^2.0.0",
"fastify-zod": "^1.3.2",
"module-alias": "^2.2.3",
"pg": "^8.11.0",
"zod": "^3.21.4"
},
"scripts": {
"start": "node dist/index.js",
"dev": "tsc-watch --onSuccess \"node ./dist/index.js\" ",
"build": "tsc",
"migrate": "drizzle-kit generate:pg"
},
"_moduleAliases": {
"@/utils": "dist/utils",
"@/db": "dist/db",
"@/application": "dist/modules/application",
"@/roles": "dist/modules/roles",
"@/users": "dist/modules/users"
}
}