-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 906 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 906 Bytes
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
{
"name": "multi-tenant-blogging",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"type": "commonjs",
"scripts": {
"dev": "ts-node-dev src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"prisma:migrate": "prisma migrate dev"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/adapter-pg": "^7.4.1",
"@prisma/client": "^5.22.0",
"bcrypt": "^6.0.0",
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"jsonwebtoken": "^9.0.3",
"pg": "^8.18.0",
"prisma": "^5.22.0",
"redis": "^5.11.0"
},
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.3.0",
"@types/pg": "^8.16.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.9.3"
}
}