-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 859 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 859 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
{
"name": "bloggle-backend",
"version": "0.1.1",
"description": "Main Backend Web Server of Bloggle",
"main": "server.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"type": "module",
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.27.0",
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.0.3",
"@types/nodemailer": "^7.0.5",
"@types/pg": "^8.16.0",
"prisma": "^7.2.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@prisma/adapter-pg": "^7.2.0",
"@prisma/client": "^7.2.0",
"better-auth": "^1.4.10",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"nodemailer": "^7.0.12",
"pg": "^8.16.3"
}
}